Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Slayed NULL defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
mfidino committed Aug 22, 2019
1 parent 551b73c commit e8dd854
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autofocus/predict/process__predict_example.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ library(zip)
library(progress)
library(dplyr)

find_image_files <- function(search_dir = NULL){
find_image_files <- function(search_dir){
# Utility function to find all recursively find all image files
# starting from a directory

Expand Down Expand Up @@ -136,7 +136,7 @@ process_images <- function(image_files){
}


post_zips <- function(processed_images = NULL,
post_zips <- function(processed_images,
uri = "http://localhost:8000/predict_zip"){
# send the zip files to autofocus

Expand Down Expand Up @@ -188,7 +188,7 @@ return(response)
}


most_likely <- function(response_frame = NULL){
most_likely <- function(response_frame){
# Utility function that provides the best guess from each classification

# Args:
Expand Down

0 comments on commit e8dd854

Please sign in to comment.