Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created November 2, 2019 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/01ac74324a52103fd49c64dba363f9f8 to your computer and use it in GitHub Desktop.
Save ryantm/01ac74324a52103fd49c64dba363f9f8 to your computer and use it in GitHub Desktop.
/nix/store/vfbvdbjjac6xp0m9xzbbjr6c4qi2nfzb-python3.8-emcee-3.0.1
├── lib
│   └── python3.8
│   └── site-packages
│   ├── emcee
│   │   ├── autocorr.py
│   │   ├── backends
│   │   │   ├── backend.py
│   │   │   ├── hdf.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── backend.cpython-38.pyc
│   │   │   ├── hdf.cpython-38.pyc
│   │   │   └── __init__.cpython-38.pyc
│   │   ├── emcee_version.py
│   │   ├── ensemble.py
│   │   ├── __init__.py
│   │   ├── interruptible_pool.py
│   │   ├── model.py
│   │   ├── moves
│   │   │   ├── de.py
│   │   │   ├── de_snooker.py
│   │   │   ├── gaussian.py
│   │   │   ├── __init__.py
│   │   │   ├── kde.py
│   │   │   ├── mh.py
│   │   │   ├── move.py
│   │   │   ├── __pycache__
│   │   │   │   ├── de.cpython-38.pyc
│   │   │   │   ├── de_snooker.cpython-38.pyc
│   │   │   │   ├── gaussian.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── kde.cpython-38.pyc
│   │   │   │   ├── mh.cpython-38.pyc
│   │   │   │   ├── move.cpython-38.pyc
│   │   │   │   ├── red_blue.cpython-38.pyc
│   │   │   │   ├── stretch.cpython-38.pyc
│   │   │   │   └── walk.cpython-38.pyc
│   │   │   ├── red_blue.py
│   │   │   ├── stretch.py
│   │   │   └── walk.py
│   │   ├── mpi_pool.py
│   │   ├── pbar.py
│   │   ├── ptsampler.py
│   │   ├── __pycache__
│   │   │   ├── autocorr.cpython-38.pyc
│   │   │   ├── emcee_version.cpython-38.pyc
│   │   │   ├── ensemble.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── interruptible_pool.cpython-38.pyc
│   │   │   ├── model.cpython-38.pyc
│   │   │   ├── mpi_pool.cpython-38.pyc
│   │   │   ├── pbar.cpython-38.pyc
│   │   │   ├── ptsampler.cpython-38.pyc
│   │   │   ├── state.cpython-38.pyc
│   │   │   └── utils.cpython-38.pyc
│   │   ├── state.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── integration
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   │   ├── test_de.cpython-38.pyc
│   │   │   │   │   ├── test_de_snooker.cpython-38.pyc
│   │   │   │   │   ├── test_gaussian.cpython-38.pyc
│   │   │   │   │   ├── test_kde.cpython-38.pyc
│   │   │   │   │   ├── test_longdouble.cpython-38.pyc
│   │   │   │   │   ├── test_proposal.cpython-38.pyc
│   │   │   │   │   ├── test_stretch.cpython-38.pyc
│   │   │   │   │   └── test_walk.cpython-38.pyc
│   │   │   │   ├── test_de.py
│   │   │   │   ├── test_de_snooker.py
│   │   │   │   ├── test_gaussian.py
│   │   │   │   ├── test_kde.py
│   │   │   │   ├── test_longdouble.py
│   │   │   │   ├── test_proposal.py
│   │   │   │   ├── test_stretch.py
│   │   │   │   └── test_walk.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-38.pyc
│   │   │   └── unit
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── test_autocorr.cpython-38.pyc
│   │   │   │   ├── test_backends.cpython-38.pyc
│   │   │   │   ├── test_blobs.cpython-38.pyc
│   │   │   │   ├── test_sampler.cpython-38.pyc
│   │   │   │   ├── test_state.cpython-38.pyc
│   │   │   │   └── test_stretch.cpython-38.pyc
│   │   │   ├── test_autocorr.py
│   │   │   ├── test_backends.py
│   │   │   ├── test_blobs.py
│   │   │   ├── test_sampler.py
│   │   │   ├── test_state.py
│   │   │   └── test_stretch.py
│   │   └── utils.py
│   └── emcee-0.0.0.dist-info
│   ├── AUTHORS.rst
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
17 directories, 90 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment