File tree Expand file tree Collapse file tree 5 files changed +0
-165
lines changed
Expand file tree Collapse file tree 5 files changed +0
-165
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ RUN pip install --find-links https://girder.github.io/large_image_wheels --edita
1818
1919RUN if [ "$TASKS" = "1" ]; \
2020 then pip install --editable /opt/geoinsight-server[tasks]; \
21- # Install tile2net (may take up to 30 mins)
22- git clone https://github.com/VIDA-NYU/tile2net.git; \
23- python -m pip install ./tile2net; \
2421 fi
2522
2623# Use a directory name which will never be an import name, as isort considers this as first-party.
Original file line number Diff line number Diff line change @@ -44,15 +44,6 @@ services:
4444 env_file : ./dev/.env.docker-compose
4545 volumes :
4646 - .:/opt/geoinsight-server
47- # NVIDIA driver and increased memory limit are required for tile2net inference
48- deploy :
49- resources :
50- reservations :
51- devices :
52- - driver : nvidia
53- count : 1
54- capabilities : [gpu]
55- shm_size : 1gb
5647 depends_on :
5748 - postgres
5849 - rabbitmq
Original file line number Diff line number Diff line change 44from .flood_simulation import FloodSimulation
55from .geoai_segmentation import GeoAISegmentation
66from .network_recovery import NetworkRecovery
7- from .tile2net_segmentation import Tile2NetSegmentation
87
98analysis_types : list [type [AnalysisType ]] = [
109 FloodSimulation ,
1110 FloodNetworkFailure ,
1211 NetworkRecovery ,
13- Tile2NetSegmentation ,
1412 GeoAISegmentation ,
1513 CreateRoadNetwork ,
1614]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ class GeoInsightMixin(ConfigMixin):
6565 ENABLE_TASK_FLOOD_NETWORK_FAILURE = values .BooleanValue (True )
6666 ENABLE_TASK_NETWORK_RECOVERY = values .BooleanValue (True )
6767 ENABLE_TASK_GEOAI_SEGMENTATION = values .BooleanValue (True )
68- ENABLE_TASK_TILE2NET_SEGMENTATION = values .BooleanValue (True )
6968 ENABLE_TASK_CREATE_ROAD_NETWORK = values .BooleanValue (True )
7069
7170 @staticmethod
You can’t perform that action at this time.
0 commit comments