All Projects → hgrif → Example Project

hgrif / Example Project

Licence: mit
Example Python DS project

Labels

Projects that are alternatives of or similar to Example Project

Sdl manual
The Manual for writing Games in Perl using SDL. Part of TPF grant.
Stars: ✭ 57 (-12.31%)
Mutual labels:  makefile
Documentbuilder
ONLYOFFICE Document Builder is powerful text, spreadsheet, presentation and PDF generating tool
Stars: ✭ 61 (-6.15%)
Mutual labels:  makefile
Counter Strike Docker
Docker image for Counter-Strike 1.6 server
Stars: ✭ 63 (-3.08%)
Mutual labels:  makefile
Nativefiledialog
A tiny, neat C library that portably invokes native file open and save dialogs.
Stars: ✭ 1,100 (+1592.31%)
Mutual labels:  makefile
Voicenet
Speech synthesis platform based on tensorflow and sonnet
Stars: ✭ 60 (-7.69%)
Mutual labels:  makefile
Proprietary vendor sony
Stars: ✭ 61 (-6.15%)
Mutual labels:  makefile
Vipertemplate
Viper Template makes the process of generation of the Viper's modules easier and faster.
Stars: ✭ 57 (-12.31%)
Mutual labels:  makefile
Clourmusic flutter
flutter 仿网易云音乐app
Stars: ✭ 65 (+0%)
Mutual labels:  makefile
Buildroot
Buildroot fork with some customizations for RPi and BBB
Stars: ✭ 60 (-7.69%)
Mutual labels:  makefile
Python Docs Zh Tw
Stars: ✭ 63 (-3.08%)
Mutual labels:  makefile
Tutorials
🎓 Practical beginner-level introductions to using different tools and technologies, with a focus on their application in the newsroom
Stars: ✭ 59 (-9.23%)
Mutual labels:  makefile
Yolo
Kill a random process
Stars: ✭ 59 (-9.23%)
Mutual labels:  makefile
Ansible In Action
Ansible playbook to deploy your Laravel code base to VPS
Stars: ✭ 61 (-6.15%)
Mutual labels:  makefile
Wireguard Go Docker
Wireguard docker image
Stars: ✭ 57 (-12.31%)
Mutual labels:  makefile
Openvoiceos
OpenVoiceOS is a minimalistic linux OS bringing the open source voice assistant Mycroft A.I. to embbeded, low-spec headless and/or small (touch)screen devices.
Stars: ✭ 64 (-1.54%)
Mutual labels:  makefile
Markdown To Epub Mobi
Write in Markdown, publish in EPUB and MOBI formats for Kindle and other e-readers
Stars: ✭ 57 (-12.31%)
Mutual labels:  makefile
Neuralstyler
Turn Your Videos/photos/Gif into Art
Stars: ✭ 61 (-6.15%)
Mutual labels:  makefile
Curl Docker
official docker image for curl
Stars: ✭ 64 (-1.54%)
Mutual labels:  makefile
Makebakery
A static website generator built on GNU Make.
Stars: ✭ 64 (-1.54%)
Mutual labels:  makefile
Reactnative Jwts
Authenticating a React Native app with JSON Web Tokens
Stars: ✭ 62 (-4.62%)
Mutual labels:  makefile

example_project

Example project structure.

Project Organization

│
├── data/               <- The original, immutable data dump. 
│
├── figures/            <- Figures saved by scripts or notebooks.
│
├── notebooks/          <- Jupyter notebooks. Naming convention is a short `-` delimited 
│                         description, a number (for ordering), and the creator's initials,
│                        e.g. `initial-data-exploration-01-hg`.
│
├── output/             <- Manipulated data, logs, etc.
│
├── tests/              <- Unit tests.
│
├── exampleproject/     <- Python module with source code of this project.
│
├── environment.yml     <- conda virtual environment definition file.
│
├── LICENSE
│
├── Makefile            <- Makefile with commands like `make environment`
│
├── README.md           <- The top-level README for developers using this project.
│
└── tox.ini             <- tox file with settings for running tox; see tox.testrun.org

Set up

Install the virtual environment with conda and activate it:

$ conda env create -f environment.yml
$ source activate example-project 

Install exampleproject in the virtual environment:

$ pip install --editable .

Run Jupyter Notebook and open the notebooks in notebooks/:

$ jupyter notebook
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].