-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from MyoHub/p2
Phase 2
- Loading branch information
Showing
10 changed files
with
182 additions
and
8 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...orkflows/docker-submission_loco_deprl.yml → ...flows/P1_docker-submission_loco_deprl.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Submission Loco Deprl | ||
name: P1 Submission Loco Deprl | ||
|
||
on: workflow_dispatch | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...rkflows/docker-submission_loco_random.yml → ...lows/P1_docker-submission_loco_random.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Submission Loco Random | ||
name: P1 Submission Loco Random | ||
|
||
on: workflow_dispatch | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...orkflows/docker-submission_mani_deprl.yml → ...flows/P1_docker-submission_mani_deprl.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Submission Mani Deprl | ||
name: P1 Submission Mani Deprl | ||
|
||
on: workflow_dispatch | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...rkflows/docker-submission_mani_random.yml → ...lows/P1_docker-submission_mani_random.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Submission Mani Random | ||
name: P1 Submission Mani Random | ||
|
||
on: workflow_dispatch | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: P2 Submission Loco Deprl | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install evalAI | ||
run: | | ||
sudo apt-get install libxml2-dev libxslt-dev | ||
pip install "evalai>=1.3.13" | ||
- name: Set EvalAI token | ||
run: | | ||
echo "The GitHub Action Secret will be masked: " | ||
echo ${{ secrets.EvalAI_token }} | ||
echo "Trick to echo GitHub Actions Secret: " | ||
echo ${{secrets.EvalAI_token}} | sed 's/./& /g' | ||
evalai set_token ${{ secrets.EvalAI_token }} | ||
- name: Test that the registration was successful. MyoChallenge needs to be in the list returned | ||
run: evalai challenges --participant | ||
|
||
- name: Build the Docker image | ||
run: | | ||
docker compose -f docker-compose-LocoAgentDeprl.yml build | ||
- name: Push to evalai | ||
run: evalai push loco_agent_deprl:latest --phase myochallenge2023-locophase2-2105 --private | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: P2 Submission Loco Random | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install evalAI | ||
run: | | ||
sudo apt-get install libxml2-dev libxslt-dev | ||
pip install "evalai>=1.3.13" | ||
- name: Set EvalAI token | ||
run: | | ||
echo "The GitHub Action Secret will be masked: " | ||
echo ${{ secrets.EvalAI_token }} | ||
echo "Trick to echo GitHub Actions Secret: " | ||
echo ${{secrets.EvalAI_token}} | sed 's/./& /g' | ||
evalai set_token ${{ secrets.EvalAI_token }} | ||
- name: Test that the registration was successful. MyoChallenge needs to be in the list returned | ||
run: evalai challenges --participant | ||
|
||
- name: Build the Docker image | ||
run: | | ||
docker compose -f docker-compose-LocoAgentRandom.yml build | ||
- name: Push to evalai | ||
run: evalai push loco_agent_random:latest --phase myochallenge2023-locophase2-2105 --private | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: P2 Submission Mani Deprl | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install evalAI | ||
run: | | ||
sudo apt-get install libxml2-dev libxslt-dev | ||
pip install "evalai>=1.3.13" | ||
- name: Set EvalAI token | ||
run: | | ||
echo "The GitHub Action Secret will be masked: " | ||
echo ${{ secrets.EvalAI_token }} | ||
echo "Trick to echo GitHub Actions Secret: " | ||
echo ${{secrets.EvalAI_token}} | sed 's/./& /g' | ||
evalai set_token ${{ secrets.EvalAI_token }} | ||
- name: Test that the registration was successful. MyoChallenge needs to be in the list returned | ||
run: evalai challenges --participant | ||
|
||
- name: Build the Docker image | ||
run: | | ||
docker compose -f docker-compose-ManiAgentDeprl.yml build | ||
- name: Push to evalai | ||
run: evalai push mani_agent_deprl:latest --phase myochallenge2023-maniphase2-2105 --private | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: P2 Submission Mani Random | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install evalAI | ||
run: | | ||
sudo apt-get install libxml2-dev libxslt-dev | ||
pip install "evalai>=1.3.13" | ||
- name: Set EvalAI token | ||
run: | | ||
echo "The GitHub Action Secret will be masked: " | ||
echo ${{ secrets.EvalAI_token }} | ||
echo "Trick to echo GitHub Actions Secret: " | ||
echo ${{secrets.EvalAI_token}} | sed 's/./& /g' | ||
evalai set_token ${{ secrets.EvalAI_token }} | ||
- name: Test that the registration was successful. MyoChallenge needs to be in the list returned | ||
run: evalai challenges --participant | ||
|
||
- name: Build the Docker image | ||
run: | | ||
docker compose -f docker-compose-ManiAgentRandom.yml build | ||
- name: Push to evalai | ||
run: evalai push mani_agent_random:latest --phase myochallenge2023-maniphase2-2105 --private | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters