api/ImageSimilarity/deployment/app.py [123:129]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    neighbors = request.args.get('neighbors')
    if neighbors is None:
        neighbors = 4 #default
        log('using default neighbors: %d' % neighbors)
    else:
        neighbors = int(neighbors)
    print('number of neighbors: %d' % neighbors)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



api/ImageSimilarity/deployment/app.py [147:153]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            neighbors = request.args.get('neighbors')
            if neighbors is None:
                neighbors = 4 #default
                log('using default neighbors: %d' % neighbors)
            else:
                neighbors = int(neighbors)
            print('number of neighbors: %d' % neighbors)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



