fichiers de configs

This commit is contained in:
Francois 2019-03-07 14:13:36 +01:00
parent 2895d140c5
commit f6d8b0c33c
3 changed files with 28 additions and 1 deletions

4
.gitignore vendored
View File

@ -87,4 +87,6 @@ resize_collections
build_tfrecords
# mysql dir
mysql/
mysql/
config/*
!config/config.template.yaml

View File

@ -0,0 +1,21 @@
version: 1
mysql:
database:
name: XXX
user: XXX
password: XXX
server: XXX
port: 3306
directory:
collections: 'path/to/dir/collection'
autoencoder:
base: 'path/to/dir/collection'
train: 'path/to/dir/collection'
test: 'path/to/dir/collection'
valid: 'path/to/dir/collection'
training:
seed: 37672
proportions:
train: 0.7
test: 0.2
valid: 0.1

View File

@ -4,6 +4,7 @@ services:
image: jupyter/tensorflow-notebook:7f1482f5a136
container_name: jupyter-iss
command: start.sh jupyter lab --NotebookApp.base_url=/jupyter --NotebookApp.token='' --NotebookApp.password=''
user: root
networks:
- netproxy
- default
@ -13,6 +14,9 @@ services:
- "traefik.enable=true"
- "traefik.frontend.rule=Host:iss.docker.lo;PathPrefix: /jupyter"
- "traefik.port=8888"
environment:
- NB_GID=1000
- NB_USER=jovyan
adminer:
image: adminer:4.7