-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cache cleanup from memory. registration. docker
- Loading branch information
Ilija Vukotic
committed
Aug 4, 2020
1 parent
05806f5
commit 8644bfb
Showing
11 changed files
with
70 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
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,6 @@ | ||
|
||
add actor cleaning step: | ||
* ask actor for decission to remove or not. List files in order of LRU. Signal to not learn is given in comment dict. | ||
|
||
register so it is pip installable. | ||
|
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,2 @@ | ||
from gym-cache.envs.cache_env import CacheEnv | ||
from gym-cache.envs.cache_continous import CacheContinousEnv |
File renamed without changes.
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
setuptools | ||
wheel | ||
tqdm | ||
twine | ||
pandas | ||
gym |
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,11 +1,27 @@ | ||
from setuptools import setup | ||
import setuptools | ||
|
||
setup( | ||
name='gym_cache', | ||
version='0.0.1', | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name='gym-cache', | ||
version='1.0.0', | ||
install_requires=[ | ||
'gym>=0.2.3', | ||
'pandas>=0.24.2', | ||
'scikit-learn>=0.22.1' | ||
] | ||
], | ||
scripts=['unit.py'], | ||
author="Ilija Vukotic", | ||
author_email="[email protected]", | ||
description="gym environment simulating file cache.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/ivukotic/gym-cache", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
) |
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