Searched refs:arr (Results 1 – 3 of 3) sorted by relevance
33 arr = np.frombuffer(f.read(), dtype=np.float32)35 arr = arr.reshape((h, w, d))36 arr = (arr + 1) * 12837 im = Image.fromarray(arr.astype(np.uint8))
40 def compute_common_prefix(arr): argument41 result = arr[0]45 for i in range(1, len(arr)):47 while arr[i].find(result) != 0:
363 String[] arr = file.split("/", 3); in getTargetFileHash() local364 if (arr.length < 3) { in getTargetFileHash()373 String formattedName = arr[1].toUpperCase() + "/" + arr[2]; in getTargetFileHash()