forked from Deadsg/DQNAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
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 Deadsg#5 from K-Rawson/main
Implemented working conda setup and run scripts
- Loading branch information
Showing
18 changed files
with
45,314 additions
and
24 deletions.
There are no files selected for viewing
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,3 +1,5 @@ | ||
miniconda | ||
bin/condaenv.4d1pwj__.requirements.txt | ||
miniconda.exe | ||
UpgradeLog*.htm | ||
.vs |
Large diffs are not rendered by default.
Oops, something went wrong.
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,23 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.9.34321.82 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "DQNAgent", "DQNAgent.pyproj", "{28662260-C52B-4423-BD57-B20195913E9A}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{28662260-C52B-4423-BD57-B20195913E9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{28662260-C52B-4423-BD57-B20195913E9A}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {7EEACEF9-19A1-4CBA-BCE3-D4C0C3D73C3A} | ||
EndGlobalSection | ||
EndGlobal |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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,10 +1,16 @@ | ||
name: dqnagent | ||
name: DQNAgent | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3.8 | ||
- numpy | ||
- pandas | ||
- matplotlib | ||
- tensorflow | ||
- pip | ||
- pip: | ||
- stable-baselines3 | ||
- gym | ||
- matplotlib | ||
- numpy | ||
- pandas | ||
- scikit-learn | ||
- tensorflow | ||
- transformers | ||
|
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@echo off | ||
rem This script will activate the virtual environment and run the dqnagent.py script | ||
|
||
set BIN_PATH=%~dp0 | ||
set ROOT_PATH=%BIN_PATH%..\ | ||
set DQNA_TEXT=DQNAgent | ||
set OKAY_TEXT=Okay! | ||
set DQNA_PATH=%ROOT_PATH%\%DQNA_TEXT% | ||
set MINICONDA_PATH=%ROOT_PATH%\miniconda | ||
|
||
echo. | ||
|
||
:initialize_conda_env | ||
echo Initialize Conda Environment | ||
call %MINICONDA_PATH%\Scripts\conda init --quiet powershell | ||
echo %OKAY_TEXT% | ||
echo. | ||
|
||
:activate_conda_env | ||
echo Activate Conda Environment | ||
call %MINICONDA_PATH%\condabin\activate %DQNA_TEXT% | ||
echo %OKAY_TEXT% | ||
echo. | ||
|
||
:run_dqn_agent | ||
echo Run DQN Agent | ||
python %DQNA_PATH%\DQNAgent.py | ||
echo %OKAY_TEXT% | ||
echo. | ||
|
||
:deactivate_conda_env | ||
echo Deactivate Conda Environment | ||
conda deactivate | ||
echo %OKAY_TEXT% | ||
echo. |
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
Binary file added
BIN
+4.23 MB
ref/1904.10509v1-Generating_Long_Sequences_with_Sparse_Transformers.pdf
Binary file not shown.
Binary file added
BIN
+3.37 MB
ref/2204.06745-GPT-NeoX-20B-_An_Open-Source_Autoregressive_Language_Model.pdf
Binary file not shown.
Binary file not shown.