Skip to content

Commit

Permalink
Simplify RegionRelation, add TubeRelation and TubeRegionRelation.
Browse files Browse the repository at this point in the history
Soon: Update use of frame labels with region labels. Start using
RegionRelations on detection -> analysis.

Next:

- Implement pre-condition checks, failed to launch error
messages for processes. Rollback created models on failure to launch.

- Implement clustering.

- Implement location net, fine-tuning / training face recognition models
  • Loading branch information
akshay bhat committed May 31, 2018
1 parent af6ca69 commit 1e9c29c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dvactl
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,17 @@ def configure_compose(mode):
envs.update(compose.test.load_envs(os.path.expanduser('~/aws.env')))
print '~/aws.env found. writing credentials to config.json'
except:
print '~/aws.env not found. required for testing rfs mode.'
print '{} not found. not passing AWS creds. Please create ~/aws.env with AWS_ACCESS_KEY_ID ' \
'and AWS_SECRET_ACCESS_KEY or manually ' \
'add them to credentials in config.json'.format(os.path.expanduser('~/aws.env'))
else:
if os.path.isfile(os.path.expanduser('~/aws.env')):
envs.update(compose.test.load_envs(os.path.expanduser('~/aws.env')))
print '~/aws.env found. writing credentials to config.json'
else:
print '{} not found. not passing AWS creds.'.format(os.path.expanduser('~/aws.env'))
print '{} not found. not passing AWS creds. Please create ~/aws.env with AWS_ACCESS_KEY_ID ' \
'and AWS_SECRET_ACCESS_KEY or manually ' \
'add them to credentials in config.json'.format(os.path.expanduser('~/aws.env'))
if os.path.isfile(os.path.expanduser('~/do.env')):
envs.update(compose.test.load_envs(os.path.expanduser('~/do.env')))
print '~/do.env found. writing credentials to config.json'
Expand Down

0 comments on commit 1e9c29c

Please sign in to comment.