Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
Co-authored-by: Abhinav Venigalla <[email protected]>
Co-authored-by: Ajay Saini <[email protected]>
Co-authored-by: Bandish Shah <[email protected]>
Co-authored-by: Cory Stephenson <[email protected]>
Co-authored-by: Davis Blalock <[email protected]>
Co-authored-by: Hanlin Tang <[email protected]>
Co-authored-by: Jacob Portes <[email protected]>
Co-authored-by: Jamie Bloxham <[email protected]>
Co-authored-by: Jonathan Frankle <[email protected]>
Co-authored-by: Joseph Slember <[email protected]>
Co-authored-by: Julie Choi <[email protected]>
Co-authored-by: Landan Seguin <[email protected]>
Co-authored-by: Laura Florescu <[email protected]>
Co-authored-by: Matthew Leavitt <[email protected]>
Co-authored-by: Michael Carbin <[email protected]>
Co-authored-by: Moin Nadeem <[email protected]>
Co-authored-by: Naveen Rao <[email protected]>
Co-authored-by: Nicholas Sapp <[email protected]>
Co-authored-by: Niklas Nielsen <[email protected]>
Co-authored-by: Ravi Rahman <[email protected]>
Co-authored-by: Tyler Lee <[email protected]>
  • Loading branch information
22 people committed Oct 13, 2021
0 parents commit d302597
Show file tree
Hide file tree
Showing 426 changed files with 29,857 additions and 0 deletions.
152 changes: 152 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/
docs/source/_build/
# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Virtual Env
venv/

# WandB
wandb/

# Spacemacs
._#*
.#*
.vscode/

# Vim
*.swp

# README backups
README.md.bkp

# OS X
.DS_Store

# Sphinx
generated/
18 changes: 18 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py

# Optionally set the version of Python and requirements required to build your docs
python:
version: "3.8"
install:
- method: pip
path: .[all]
44 changes: 44 additions & 0 deletions .yamllint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
yaml-files:
- "*.yaml"
- "*.yml"
- .yamllint

ignore: |
wandb
*
rules:
braces:
forbid: non-empty
brackets:
forbid: false
colons: enable
commas: enable
comments:
level: warning
comments-indentation: enable
document-end:
present: false
document-start:
present: false
empty-lines: enable
empty-values: disable
hyphens: enable
indentation:
spaces: 2
indent-sequences: true
check-multi-line-strings: false
key-duplicates: enable
key-ordering: disable
line-length:
max: 200
allow-non-breakable-words: true
allow-non-breakable-inline-mappings: true
new-line-at-end-of-file: enable
new-lines: enable
octal-values: enable
quoted-strings:
quote-type: double
required: false
trailing-spaces: enable
truthy: disable
Empty file added CONTRIBUTING.md
Empty file.
Loading

0 comments on commit d302597

Please sign in to comment.