forked from xbpeng/rl_assignments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rl_assignments.pyproj
109 lines (109 loc) · 4.81 KB
/
rl_assignments.pyproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6cbc0484-fec8-4966-9d8b-0d33c12a51cd}</ProjectGuid>
<ProjectHome />
<StartupFile>run.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId>CondaEnv|CondaEnv|rl_forge</InterpreterId>
<IsWindowsApplication>False</IsWindowsApplication>
<<<<<<< HEAD
<<<<<<< HEAD
<CommandLineArguments>--mode train --env_config data/envs/dm_cheetah.yaml --agent_config a1/dm_cheetah_bc_agent.yaml --log_file output/log.txt --out_model_file output/model.pt --max_samples 20000 --visualize</CommandLineArguments>
=======
<CommandLineArguments>--mode train --env_config data/envs/dm_cheetah.yaml --agent_config a2/dm_cheetah_pg_agent.yaml --log_file output/log.txt --out_model_file output/model.pt --max_samples 50000000 --visualize</CommandLineArguments>
>>>>>>> master
=======
<CommandLineArguments>--mode train --env_config data/envs/atari_pong.yaml --agent_config a3/atari_dqn_agent.yaml --log_file output/log.txt --out_model_file output/model.pt --visualize</CommandLineArguments>
>>>>>>> master
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
<SuppressEnvironmentCreationPrompt>True</SuppressEnvironmentCreationPrompt>
<Name>rl_assignments</Name>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="a3\atari_dqn_agent.yaml" />
<Content Include="requirements.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="a1\bc_agent.py" />
<<<<<<< HEAD
=======
<Compile Include="a2\cem_agent.py" />
<Compile Include="a2\pg_agent.py" />
<Compile Include="a3\dqn_agent.py" />
<Compile Include="envs\atari_env.py" />
<Compile Include="envs\atari_wrappers.py" />
>>>>>>> master
<Compile Include="envs\base_env.py" />
<Compile Include="envs\env_dm.py" />
<Compile Include="learning\agent_builder.py" />
<Compile Include="learning\base_agent.py" />
<Compile Include="learning\base_model.py" />
<Compile Include="learning\bc_model.py" />
<Compile Include="learning\cem_model.py" />
<Compile Include="learning\distribution_categorical.py" />
<<<<<<< HEAD
=======
<Compile Include="learning\dqn_model.py" />
<Compile Include="learning\dyna_agent.py" />
<Compile Include="learning\dyna_model.py" />
>>>>>>> master
<Compile Include="learning\experience_buffer.py" />
<Compile Include="learning\distribution_gaussian_diag.py" />
<Compile Include="learning\expert_agent.py" />
<Compile Include="learning\expert_model.py" />
<<<<<<< HEAD
=======
<Compile Include="learning\mb_agent.py" />
<Compile Include="learning\mb_model.py" />
<Compile Include="learning\nets\cnn_3conv_1fc_0.py" />
>>>>>>> master
<Compile Include="learning\nets\fc_1layers_16units.py" />
<Compile Include="learning\nets\fc_1layers_32units.py" />
<Compile Include="learning\nets\fc_2layers_1024units.py" />
<Compile Include="learning\nets\fc_2layers_128units.py" />
<Compile Include="learning\nets\fc_2layers_64units.py" />
<Compile Include="learning\nets\net_builder.py" />
<Compile Include="learning\nets\__init__.py" />
<Compile Include="learning\normalizer.py" />
<Compile Include="learning\return_tracker.py" />
<Compile Include="run.py" />
<Compile Include="tools\plot_log\plot_log.py" />
<Compile Include="tools\util\plot_util.py" />
<Compile Include="util\logger.py" />
<Compile Include="util\math_util.py" />
<Compile Include="util\tb_logger.py" />
<Compile Include="util\torch_util.py" />
<Compile Include="util\util.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="a1\" />
<<<<<<< HEAD
=======
<Folder Include="a2\" />
<Folder Include="a3\" />
>>>>>>> master
<Folder Include="envs\" />
<Folder Include="learning" />
<Folder Include="learning\nets\" />
<Folder Include="tools\" />
<Folder Include="tools\plot_log\" />
<Folder Include="tools\util\" />
<Folder Include="util" />
</ItemGroup>
<ItemGroup>
<InterpreterReference Include="CondaEnv|CondaEnv|rl_forge" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
</Project>