diff --git a/.dvc/config b/.dvc/config index a7fdbdd..0c583bd 100644 --- a/.dvc/config +++ b/.dvc/config @@ -1,4 +1,6 @@ [core] - remote = local_remote + remote = ium_ssh_remote ['remote "local_remote"'] url = /dvcstore +['remote "ium_ssh_remote"'] + url = ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 0000000..c445cba --- /dev/null +++ b/data/.gitignore @@ -0,0 +1 @@ +/lego_sets.csv diff --git a/data/lego_sets.csv.dvc b/data/lego_sets.csv.dvc new file mode 100644 index 0000000..cc030ba --- /dev/null +++ b/data/lego_sets.csv.dvc @@ -0,0 +1,5 @@ +outs: +- md5: fae3a42b0ad631fc6683b6878752e56d + size: 18604554 + isexec: true + path: lego_sets.csv diff --git a/lab10/Jenkinsfile_dvc b/lab10/Jenkinsfile_dvc new file mode 100644 index 0000000..e98665f --- /dev/null +++ b/lab10/Jenkinsfile_dvc @@ -0,0 +1,15 @@ +pipeline { + agent { + dockerfile { + dir 'lab10' + args '-v /dvcstore' + } + } + stages { + stage('Stage 1') { + steps { + + } + } + } +} diff --git a/lab9/environment.yml b/lab9/environment.yml new file mode 100644 index 0000000..a0ce53a --- /dev/null +++ b/lab9/environment.yml @@ -0,0 +1,14 @@ +name: ium +channels: + - conda-forge + - defaults +dependencies: + - pandas + - scikit-learn + - mlflow + - pymongo + - sacred + - keras + - matplotlib + - tensorflow +prefix: /home/ked/anaconda3/envs/ium