Skip to content
Snippets Groups Projects
Commit e85be11a authored by Wagner Gonçalves Pinto's avatar Wagner Gonçalves Pinto
Browse files

Adapt files and commands to use the wheel file and the new project name (from...

Adapt files and commands to use the wheel file and the new project name (from 'DeconvNet' to 'DeconvBFNet')
parent 05e4529a
No related branches found
No related tags found
No related merge requests found
# DeconvNet
# DeconvBFNet
Convolutional neural network used to deconvolute beamforming maps.
......@@ -59,7 +59,7 @@ To install all dependencies, one may use [conda](https://anaconda.org/):
conda env create -f ./dependencies/conda_env.yml --verbose
```
Acoustic beamforming package [Beamlib](https://gitlab.isae-supaero.fr/acoustic-beamforming/beamlib) is not required for training a model but necessary if one wants to use the implemented database generation and testing funcionalities. A wheel of the package is available in the [dependencies](/depdendencies) folder, to install it: `pip install dependencies/Beamlib-0.20-py3-none-any.whl`
Acoustic beamforming package [Beamlib](https://gitlab.isae-supaero.fr/acoustic-beamforming/beamlib) is not required for training a model but necessary if one wants to use the implemented database generation and testing funcionalities. To install it you can either clone the repository or install the package's wheel available in the [dependencies](/depdendencies) folder by running (preferably after activating the dedicated conda environment) `pip install dependencies/Beamlib-0.20-py3-none-any.whl`.
## Usage
......
name: deconvnet
name: deconvbfnet
channels:
- defaults
dependencies:
......@@ -63,4 +63,4 @@ dependencies:
- urllib3==1.26.4
- werkzeug==1.0.1
- yarl==1.6.3
prefix: /users/p20035/goncalve/.conda/envs/deconvnet
prefix: ~/.conda/envs/deconvnet
......@@ -11,4 +11,5 @@ LIB_FOLDER="${HOME}/dev/deeplearning/deconvbfnet"
conda env create -f "${LIB_FOLDER}/dependencies/conda_env.yml" --verbose
# installing beamlib
conda activate deconvbfnet
pip install "${LIB_FOLDER}/dependencies/Beamlib-0.20-py3-none-any.whl"
......@@ -9,7 +9,7 @@
# starting conda and the env
. "${HOME}/anaconda3/etc/profile.d/conda.sh"
LIB_FOLDER="${HOME}/dev/deeplearning/deconvnet"
LIB_FOLDER="${HOME}/dev/deeplearning/deconvbfnet"
conda activate deconvnet
date
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment