This file contains hidden or 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
import argparse | |
import collections | |
import functools | |
import gc | |
import os | |
import pathlib | |
import resource | |
import sys | |
import warnings |
This file contains hidden or 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
import argparse | |
import collections | |
import functools | |
import gc | |
import os | |
import pathlib | |
import resource | |
import sys | |
import warnings |
This file contains hidden or 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
ATARI_DEFAULTS = dict( | |
# General | |
steps=2e8, | |
eval_every=1e5, | |
log_every=1e4, | |
prefill=5e4, | |
dataset_size=4e6, | |
pretrain=0, | |
# Environment |
This file contains hidden or 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
import argparse | |
import collections | |
import functools | |
import gc | |
import os | |
import pathlib | |
import resource | |
import sys | |
import warnings |
NewerOlder