Repaired the circle snipping.

This commit is contained in:
Philipp Horstenkamp 2022-07-03 23:44:49 +02:00
parent a2eef37c96
commit d6eb952226
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
5 changed files with 239 additions and 1373 deletions

4
.idea/vcs.xml generated
View File

@ -2,8 +2,6 @@
<project version="4"> <project version="4">
<component name="VcsDirectoryMappings"> <component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" /> <mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="$PROJECT_DIR$/model" vcs="Git" />
<mapping directory="$PROJECT_DIR$/pyrate" vcs="Git" /> <mapping directory="$PROJECT_DIR$/pyrate" vcs="Git" />
<mapping directory="$PROJECT_DIR$/ros-nodes" vcs="Git" />
</component> </component>
</project> </project>

View File

@ -4,26 +4,15 @@ services:
build: build:
context: pyrate context: pyrate
dockerfile: pyrate.dockerfile dockerfile: pyrate.dockerfile
restart: no restart: "no"
container_name: pyrate container_name: pyrate
ports: ports:
- 8888:8888 - "8888:8888"
volumes: volumes:
- ./experiments:/pyrate/experiments - ./experiments:/pyrate/experiments
- ./data:/pyrate/data - ./data:/pyrate/data
# scale: 1
pyrate-gen:
build:
context: pyrate
dockerfile: pyrate.data_generator.dockerfile
restart: unless-stopped
volumes:
- ./data:/pyrate/data
environment:
- save_frequency=50
- seed_start=150
- continues=False
scale: 2
volumes: volumes:
experiments: experiments:

31
docker-compose2.yaml Normal file
View File

@ -0,0 +1,31 @@
version: '3.9'
services:
pyrate:
build:
context: pyrate
dockerfile: pyrate.dockerfile
restart: "no"
container_name: pyrate
ports:
- "8888:8888"
volumes:
- ./experiments:/pyrate/experiments
- ./data:/pyrate/data
# scale: 1
pyrate-gen:
build:
context: pyrate
dockerfile: pyrate.data_generator.dockerfile
restart: "unless-stopped"
volumes:
- ./data:/pyrate/data
environment:
- save_frequency=50
- seed_start=150
- continues=False
scale: 0
volumes:
experiments:
data:

File diff suppressed because one or more lines are too long

2
pyrate

@ -1 +1 @@
Subproject commit 2b78f0a662808631bcddd82f6ac8c3057196c66d Subproject commit 8313db72cc36d20a8a0358e1c3e1b2d43a544db8