Skip to content

Some1Nebo/ufcpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ufcpy

Local development

Install and start MySQL server

$ brew install mysql
$ mysql.server start

Create db, temp user and grant privileges

$ sudo mysql
CREATE DATABASE ufcdb;
CREATE USER 'tempuser'@'localhost' IDENTIFIED BY 'temppassword';
GRANT ALL PRIVILEGES ON ufcdb . * TO 'tempuser'@'localhost';
FLUSH PRIVILEGES;
exit

Install dependencies

$ pip install -r requirements.txt

Save dependencies

$ pip freeze > requirements.txt

Architecture

  • crawler
    • multiple data sources
    • event based updates
  • storage
  • predictor(s)
    • featurizer
    • learner
    • verifier
      • cross-validation
      • benchmarking (against trivial predictors)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages