Chad Lagore
Chad Lagore
**Is your feature request related to a problem? Please describe.** The inertia daemon is not compatible with ARM processors (like my Raspberry Pi!) ```bash ubuntu@ubuntu:~$ sudo docker run --it ubclaunchpad/inertia:v0.4.1...
Here is the basic "pip install minutes" at the moment: ```bash source activate py36 python setup.py install cd .. # Go elsewhere python Python 3.6.4 | packaged by conda-forge |...
## :construction_worker: Changes + Added prediction output capability. + Refactored classes a bit. ## :flashlight: Testing Instructions ```bash pytest -vvv ``` Follow README instructions.
Does not appear to submit on travis:  Build log: https://api.travis-ci.org/v3/job/379017798/log.txt
A shining example of a README: https://github.com/ubclaunchpad/inertia.
Our current base model (`cnn`) could be named better. Which makes me think, perhaps we could use a naming convention. Something like: ``` -- ``` So this model would become...
When a user passes in a folder of audio files, `minutes` loads all of them in, concatenates them, then reshapes them into phrases. There is an edge case where some...
[Here](https://github.com/ubclaunchpad/minutes/wiki/Scope) is a good idea, though _we probably won't transcribe_. So the body will be a binary blob (thats OK!). This work is to be done [here](https://github.com/ubclaunchpad/minutes/blob/master/minutes/minutes.py#L69-L76). ```json [ {...
Customizing a `BaseModel` is pretty simple at the moment. Something like: ```python from minutes import BaseModel class MyBaseMinutesModel(BaseModel): def fit(self, **kwargs): X_train, X_test, y_train, y_test = self._generate_training_data() # Design and...