├── README.md ├── bootstrap.vocab ├── compiler ├── android-compiler.py ├── assets │ ├── android-dsl-mapping.json │ ├── ios-dsl-mapping.json │ └── web-dsl-mapping.json ├── classes │ ├── Compiler.py │ ├── Node.py │ ├── Utils.py │ └── __init__.py ├── ios-compiler.py └── web-compiler.py ├── floyd.yml ├── models └── .keep └── pix2code.ipynb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/bootstrap.vocab -------------------------------------------------------------------------------- /compiler/android-compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/android-compiler.py -------------------------------------------------------------------------------- /compiler/assets/android-dsl-mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/assets/android-dsl-mapping.json -------------------------------------------------------------------------------- /compiler/assets/ios-dsl-mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/assets/ios-dsl-mapping.json -------------------------------------------------------------------------------- /compiler/assets/web-dsl-mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/assets/web-dsl-mapping.json -------------------------------------------------------------------------------- /compiler/classes/Compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/classes/Compiler.py -------------------------------------------------------------------------------- /compiler/classes/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/classes/Node.py -------------------------------------------------------------------------------- /compiler/classes/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/classes/Utils.py -------------------------------------------------------------------------------- /compiler/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/ios-compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/ios-compiler.py -------------------------------------------------------------------------------- /compiler/web-compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/compiler/web-compiler.py -------------------------------------------------------------------------------- /floyd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/floyd.yml -------------------------------------------------------------------------------- /models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pix2code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floydhub/pix2code-template/HEAD/pix2code.ipynb --------------------------------------------------------------------------------