Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This is a PHP demo/boilerplate for a basic API which relies on a API key. | |
**/ | |
namespace amattu\api; | |
/** | |
* The main API request manager class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<!-- Alec M., 2021 --> | |
<head> | |
<title>Offline Example</title> | |
<style> | |
/* Standard Items */ | |
html, body { | |
margin: 0; | |
padding: 0; | |
font-family: sans-serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- Alec M., 2021 --> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Upcoming Notification</title> | |
<style> | |
body, HTML { | |
background: #f2f5f7; | |
margin: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Alec M., 2021 --> | |
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Action Prompt Design</title> | |
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons" /> | |
<style> | |
/* Variables */ | |
:root { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 4.9.7deb1 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: localhost:3306 | |
-- Generation Time: Dec 24, 2020 at 07:08 AM | |
-- Server version: 8.0.22-0ubuntu0.20.10.2 | |
-- PHP Version: 7.4.9 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Labels automotive appointment description/comments | |
based on a trained multi-label classification model | |
Expected CSV structure: | |
ID|Tech|Service|Comments|mechanical|bodywork|diagnostic|suspension|engine|exhaust|electrical|brakes|tires | |
Structre notes: | |
ID, Tech, Service - Irrelevent, used during transcription | |
Comments - Used to generate the model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Produced 2020 | |
By https://amattu.com/links/github | |
Copy Alec M. | |
""" | |
""" | |
Original Author | |
https://www.geeksforgeeks.org/an-introduction-to-multilabel-classification/ | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Produced 2020 | |
By https://amattu.com/links/github | |
Copy Alec M. | |
License GNU Affero General Public License v3.0 | |
*/ | |
/* | |
Description: | |
- Read the specified file into the console |