Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffshek/open
The most boring open source you've ever seen ....
https://github.com/jeffshek/open
django django-rest-framework health health-dashboard health-informatics machine-learning quantified-self statistics writeup
Last synced: 17 days ago
JSON representation
The most boring open source you've ever seen ....
- Host: GitHub
- URL: https://github.com/jeffshek/open
- Owner: jeffshek
- License: mit
- Created: 2019-05-30T04:58:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-09T03:45:50.000Z (about 1 year ago)
- Last Synced: 2024-08-08T00:44:01.431Z (4 months ago)
- Topics: django, django-rest-framework, health, health-dashboard, health-informatics, machine-learning, quantified-self, statistics, writeup
- Language: Python
- Homepage: https://writeup.ai, https://betterself.io
- Size: 2.02 MB
- Stars: 129
- Watchers: 2
- Forks: 30
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - jeffshek/open - The most boring open source you've ever seen .... (Python)
README
[![CircleCI](https://circleci.com/gh/jeffshek/open.svg?style=svg)](https://circleci.com/gh/jeffshek/open) [![Python 3
.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)
[![codebeat badge](https://codebeat.co/badges/11be282f-cbaa-4c8f-bfb9-539e1c7e2366)](https://codebeat.co/projects/github-com-jeffshek-open-master)
![CookieCutter](https://img.shields.io/badge/built%20with-Cookiecutter%20Django-ff69b4.svg)
[![Coverage Status](https://coveralls.io/repos/github/jeffshek/open/badge.svg?branch=master)](https://coveralls.io/github/jeffshek/open?branch=master)Hi. This my personal repo I'm using to contain all my open source ideas. It serves as my justification to try out new
ideas, but with an overengineered infrastructure and libraries to support scaling and doing things "my way".If you're familiar with Django, this will be very similar. Unfortunately due to time constraints, I can't offer free
support.##### Table of Contents
- [BetterSelf.io](#httpsbetterselfio)
- [WriteUp.AI](#httpswriteupai)
- [Development Setup](#development)
- [What's Next](#whats-next)## https://betterself.io
* BetterSelf - A dashboard that lets you track your body's health. Includes supplements and medications, sleep, food, activities and more! This is being actively worked on at the moment, but mobile apps should be coming (soon).![Overview](https://user-images.githubusercontent.com/392678/29753424-259da854-8b3f-11e7-8869-667aa6a12007.png)
## https://writeup.ai
### Lots of Credit To ....
* [OpenAI](https://openai.com/blog/better-language-models/) for generating and releasing GPT-2 Medium
* [HuggingFace](https://github.com/huggingface/pytorch-transformers) for making PyTorch extensions
* [Google Cloud Platform](https://cloud.google.com/) it's been a pleasure using GCP to host this
* This is mostly open-sourced, but there is a separate private repo that handles all the deployments and the ML services. That was too hard to open-source without making my life too hard. But it's probably the easiest one to code - it only consists of a microservice and a web app hosting models.
* I'll be releasing a huge writeup about how this was built on my [blog](https://senrigan.io/blog/).## What's Next
In the future, I'm expecting to move a lot of machine learning projects about health into this repo. In the upcoming month, as I move things over bit by bit, this will be home to
* A drug discovery generator
* A clinical trial analytics engine
* More applied machine learning projects in health and medicine## Development
### To start a local web server
~~~bash
1) mkdir -p .envs/local && touch .django
2) Add some random env_varibles in there
3) Run docker-compose -f local.ym up
4) Profit
~~~### To install pre-commit hooks
~~~bash
# probably be on a virtualenv where calling python results in py3+1. pip install pre-commit
2. pre-commit install
~~~