Skip to main content

No project description provided

Project description

example_project

Tools used in this project

Project structure

.
├───.buildkite                              # Code to run on buildkite platform   ├───hooks                               # buildkite pre-command   ├───plugins                             # plugins for multiple customers, regions, sites      ├───get-environments-definition
│         └───hooks
│      └───get-python-comm                 # plugins for common python packages          └───hooks
│   └───scripts                             # scripts to check the difference between projects
├───api
│   └───migrations                          # scripts for API
├───batch
│   └───batch_linear_regression_scheduler   # script for batch scheduler - processor - writer       ├───.buildkite
│          └───scripts
│       └───terraform
│           ├───backend                     # backend infrastructure for terraform           ├───templates                   # user-data: install ssm, Inspector, and ECS config           └───vars                        # variables for each region
├───config
│   ├───model                               # config for each model   └───process                             # config for each process
├───dist
├───docs                                    # DOCUMENTATION
├───http_server                             # Http_server for inferencing   └───.buildkite
│       └───scripts
├───models                                  # models output 
├───notebooks                               # notebook for inference
├───src
│   └───__pycache__
└───tests
  1. Installation
pip install mle-project
  1. Test with python
from src import SimpleLinearRegression, evaluate, generate_data

X_train, y_train, X_test, y_test = generate_data()
model = SimpleLinearRegression()
model.fit(X_train, y_train)
predicted = model.predict(X_test)
evaluate(model, X_test, y_test, predicted)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mle_project-0.1.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

mle_project-0.1.1-py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page