Skip to content

Commit 5c73567

Browse files
author
Deric Pang
authored
Revert "Release v0.5 (Develop) (#1203)" (#1222)
This reverts commit 448aac6.
1 parent 448aac6 commit 5c73567

File tree

760 files changed

+2051
-2503
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

760 files changed

+2051
-2503
lines changed

.gitignore

100644100755
Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
1-
/UnitySDK/[Ll]ibrary/
2-
/UnitySDK/[Tt]emp/
3-
/UnitySDK/[Oo]bj/
4-
/UnitySDK/[Bb]uild/
5-
/UnitySDK/[Bb]uilds/
6-
/UnitySDK/[Pp]ackages/
7-
/UnitySDK/[Uu]nity[Pp]ackage[Mm]anager/
8-
/UnitySDK/Assets/AssetStoreTools*
9-
/UnitySDK/Assets/Plugins*
10-
/UnitySDK/Assets/Gizmos*
1+
/MLAgentsSDK/[Ll]ibrary/
2+
/MLAgentsSDK/[Tt]emp/
3+
/MLAgentsSDK/[Oo]bj/
4+
/MLAgentsSDK/[Bb]uild/
5+
/MLAgentsSDK/[Bb]uilds/
6+
/MLAgentsSDK/[Pp]ackages/
7+
/MLAgentsSDK/[Uu]nity[Pp]ackage[Mm]anager/
8+
/MLAgentsSDK/Assets/AssetStoreTools*
9+
/MLAgentsSDK/Assets/Plugins*
10+
/MLAgentsSDK/Assets/Gizmos*
1111

1212
# Tensorflow Model Info
1313
/models
1414
/summaries
1515

16-
# Training environments
17-
/envs
18-
1916
# Environemnt logfile
20-
*UnitySDK.log
17+
*MLAgentsSDK.log
2118

2219
# Visual Studio 2015 cache directory
23-
/UnitySDK/.vs/
20+
/MLAgentsSDK/.vs/
2421

2522
# Autogenerated VS/MD/Consulo solution and project files
26-
/UnitySDKExportedObj/
27-
/UnitySDK.consulo/
23+
/MLAgentsSDKExportedObj/
24+
/MLAgentsSDK.consulo/
2825
*.csproj
2926
*.unityproj
3027
*.sln
@@ -41,7 +38,7 @@
4138
*.pidb.meta
4239

4340
# Unity3D Generated File On Crash Reports
44-
/UnitySDK/sysinfo.txt
41+
/MLAgentsSDK/sysinfo.txt
4542

4643
# Builds
4744
*.apk
@@ -52,10 +49,10 @@
5249
*.x86
5350

5451
# Tensorflow Sharp Files
55-
/UnitySDK/Assets/ML-Agents/Plugins/Android*
56-
/UnitySDK/Assets/ML-Agents/Plugins/iOS*
57-
/UnitySDK/Assets/ML-Agents/Plugins/Computer*
58-
/UnitySDK/Assets/ML-Agents/Plugins/System*
52+
/MLAgentsSDK/Assets/ML-Agents/Plugins/Android*
53+
/MLAgentsSDK/Assets/ML-Agents/Plugins/iOS*
54+
/MLAgentsSDK/Assets/ML-Agents/Plugins/Computer*
55+
/MLAgentsSDK/Assets/ML-Agents/Plugins/System*
5956

6057
# Generated doc folders
6158
/docs/html

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 3 deletions

CONTRIBUTING.md

Lines changed: 29 additions & 31 deletions

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,16 @@ RUN apt-get update && apt-get -y upgrade
122122
# xvfb is used to do CPU based rendering of Unity
123123
RUN apt-get install -y xvfb
124124

125+
126+
COPY ml-agents/requirements.txt .
127+
RUN pip install --trusted-host pypi.python.org -r requirements.txt
128+
129+
COPY README.md .
125130
COPY ml-agents /ml-agents
126131
WORKDIR /ml-agents
127132
RUN pip install .
128133

129134
# port 5005 is the port used in in Editor training.
130135
EXPOSE 5005
131136

132-
ENTRYPOINT ["mlagents-learn"]
137+
ENTRYPOINT ["python", "mlagents/learn.py"]

LICENSE

100644100755
File mode changed.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)