Spaces:
Sleeping
Sleeping
Upload 4 files
Browse files- index.html +205 -0
- mlb_classes.pkl +3 -0
- tag_predictor_lr.pkl +3 -0
- tfidf_vectorizer.pkl +3 -0
index.html
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
| 6 |
+
<meta name="description" content="" />
|
| 7 |
+
<meta name="author" content="" />
|
| 8 |
+
<title>Grayscale - Start Bootstrap Theme</title>
|
| 9 |
+
<link rel="icon" type="image/x-icon" href="static/assets/favicon.ico" />
|
| 10 |
+
<!-- Font Awesome icons (free version)-->
|
| 11 |
+
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
|
| 12 |
+
<!-- Google fonts-->
|
| 13 |
+
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" />
|
| 14 |
+
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet" />
|
| 15 |
+
<!-- Core theme CSS (includes Bootstrap)-->
|
| 16 |
+
<link href="static/css/styles.css" rel="stylesheet" />
|
| 17 |
+
</head>
|
| 18 |
+
<body id="page-top">
|
| 19 |
+
<!-- Navigation-->
|
| 20 |
+
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
|
| 21 |
+
<div class="container px-4 px-lg-5">
|
| 22 |
+
<a class="navbar-brand" href="#page-top">Start Bootstrap</a>
|
| 23 |
+
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
| 24 |
+
Menu
|
| 25 |
+
<i class="fas fa-bars"></i>
|
| 26 |
+
</button>
|
| 27 |
+
<div class="collapse navbar-collapse" id="navbarResponsive">
|
| 28 |
+
<ul class="navbar-nav ms-auto">
|
| 29 |
+
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
|
| 30 |
+
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
|
| 31 |
+
<li class="nav-item"><a class="nav-link" href="#signup">Contact</a></li>
|
| 32 |
+
</ul>
|
| 33 |
+
</div>
|
| 34 |
+
</div>
|
| 35 |
+
</nav>
|
| 36 |
+
<!-- Masthead-->
|
| 37 |
+
<header class="masthead">
|
| 38 |
+
<div class="container px-4 px-lg-5 d-flex h-100 align-items-center justify-content-center">
|
| 39 |
+
<div class="d-flex justify-content-center">
|
| 40 |
+
<div class="text-center">
|
| 41 |
+
<h1 class="mx-auto my-0 text-uppercase">Grayscale</h1>
|
| 42 |
+
<h2 class="text-white-50 mx-auto mt-2 mb-5">A free, responsive, one page Bootstrap theme created by Start Bootstrap.</h2>
|
| 43 |
+
<a class="btn btn-primary" href="#about">Get Started</a>
|
| 44 |
+
</div>
|
| 45 |
+
</div>
|
| 46 |
+
</div>
|
| 47 |
+
</header>
|
| 48 |
+
<!-- About-->
|
| 49 |
+
<section class="about-section text-center" id="about">
|
| 50 |
+
<div class="container px-4 px-lg-5">
|
| 51 |
+
<div class="row gx-4 gx-lg-5 justify-content-center">
|
| 52 |
+
<div class="col-lg-8">
|
| 53 |
+
<h2 class="text-white mb-4">Built with Bootstrap 5</h2>
|
| 54 |
+
<p class="text-white-50">
|
| 55 |
+
Grayscale is a free Bootstrap theme created by Start Bootstrap. It can be yours right now, simply download the template on
|
| 56 |
+
<a href="https://startbootstrap.com/theme/grayscale/">the preview page.</a>
|
| 57 |
+
The theme is open source, and you can use it for any purpose, personal or commercial.
|
| 58 |
+
</p>
|
| 59 |
+
</div>
|
| 60 |
+
</div>
|
| 61 |
+
<img class="img-fluid" src="static/assets/img/ipad.png" alt="..." />
|
| 62 |
+
</div>
|
| 63 |
+
</section>
|
| 64 |
+
<!-- Projects-->
|
| 65 |
+
<section class="projects-section bg-light" id="projects">
|
| 66 |
+
<div class="container px-4 px-lg-5">
|
| 67 |
+
<!-- Featured Project Row-->
|
| 68 |
+
<div class="row gx-0 mb-4 mb-lg-5 align-items-center">
|
| 69 |
+
<div class="col-xl-8 col-lg-7"><img class="img-fluid mb-3 mb-lg-0" src="static/assets/img/bg-masthead.jpg" alt="..." /></div>
|
| 70 |
+
<div class="col-xl-4 col-lg-5">
|
| 71 |
+
<div class="featured-text text-center text-lg-left">
|
| 72 |
+
<h4>Shoreline</h4>
|
| 73 |
+
<p class="text-black-50 mb-0">Grayscale is open source and MIT licensed. This means you can use it for any project - even commercial projects! Download it, customize it, and publish your website!</p>
|
| 74 |
+
</div>
|
| 75 |
+
</div>
|
| 76 |
+
</div>
|
| 77 |
+
<!-- Project One Row-->
|
| 78 |
+
<div class="row gx-0 mb-5 mb-lg-0 justify-content-center">
|
| 79 |
+
<div class="col-lg-6"><img class="img-fluid" src="static/assets/img/demo-image-01.jpg" alt="..." /></div>
|
| 80 |
+
<div class="col-lg-6">
|
| 81 |
+
<div class="bg-black text-center h-100 project">
|
| 82 |
+
<div class="d-flex h-100">
|
| 83 |
+
<div class="project-text w-100 my-auto text-center text-lg-left">
|
| 84 |
+
<h4 class="text-white">Misty</h4>
|
| 85 |
+
<p class="mb-0 text-white-50">An example of where you can put an image of a project, or anything else, along with a description.</p>
|
| 86 |
+
</div>
|
| 87 |
+
</div>
|
| 88 |
+
</div>
|
| 89 |
+
</div>
|
| 90 |
+
</div>
|
| 91 |
+
<!-- Project Two Row-->
|
| 92 |
+
<div class="row gx-0 justify-content-center">
|
| 93 |
+
<div class="col-lg-6"><img class="img-fluid" src="static/assets/img/demo-image-02.jpg" alt="..." /></div>
|
| 94 |
+
<div class="col-lg-6 order-lg-first">
|
| 95 |
+
<div class="bg-black text-center h-100 project">
|
| 96 |
+
<div class="d-flex h-100">
|
| 97 |
+
<div class="project-text w-100 my-auto text-center text-lg-right">
|
| 98 |
+
<h4 class="text-white">Mountains</h4>
|
| 99 |
+
<p class="mb-0 text-white-50">Another example of a project with its respective description. These sections work well responsively as well!</p>
|
| 100 |
+
</div>
|
| 101 |
+
</div>
|
| 102 |
+
</div>
|
| 103 |
+
</div>
|
| 104 |
+
</div>
|
| 105 |
+
</div>
|
| 106 |
+
</section>
|
| 107 |
+
<!-- Signup-->
|
| 108 |
+
<section class="signup-section" id="signup">
|
| 109 |
+
<div class="container px-4 px-lg-5">
|
| 110 |
+
<div class="row gx-4 gx-lg-5">
|
| 111 |
+
<div class="col-md-10 col-lg-8 mx-auto text-center">
|
| 112 |
+
<i class="far fa-paper-plane fa-2x mb-2 text-white"></i>
|
| 113 |
+
<h2 class="text-white mb-5">Subscribe to receive updates!</h2>
|
| 114 |
+
<!-- * * * * * * * * * * * * * * *-->
|
| 115 |
+
<!-- * * SB Forms Contact Form * *-->
|
| 116 |
+
<!-- * * * * * * * * * * * * * * *-->
|
| 117 |
+
<!-- This form is pre-integrated with SB Forms.-->
|
| 118 |
+
<!-- To make this form functional, sign up at-->
|
| 119 |
+
<!-- https://startbootstrap.com/solution/contact-forms-->
|
| 120 |
+
<!-- to get an API token!-->
|
| 121 |
+
<form class="form-signup" id="contactForm" data-sb-form-api-token="API_TOKEN">
|
| 122 |
+
<!-- Email address input-->
|
| 123 |
+
<div class="row input-group-newsletter">
|
| 124 |
+
<div class="col"><input class="form-control" id="emailAddress" type="email" placeholder="Enter email address..." aria-label="Enter email address..." data-sb-validations="required,email" /></div>
|
| 125 |
+
<div class="col-auto"><button class="btn btn-primary disabled" id="submitButton" type="submit">Notify Me!</button></div>
|
| 126 |
+
</div>
|
| 127 |
+
<div class="invalid-feedback mt-2" data-sb-feedback="emailAddress:required">An email is required.</div>
|
| 128 |
+
<div class="invalid-feedback mt-2" data-sb-feedback="emailAddress:email">Email is not valid.</div>
|
| 129 |
+
<!-- Submit success message-->
|
| 130 |
+
<!---->
|
| 131 |
+
<!-- This is what your users will see when the form-->
|
| 132 |
+
<!-- has successfully submitted-->
|
| 133 |
+
<div class="d-none" id="submitSuccessMessage">
|
| 134 |
+
<div class="text-center mb-3 mt-2 text-white">
|
| 135 |
+
<div class="fw-bolder">Form submission successful!</div>
|
| 136 |
+
To activate this form, sign up at
|
| 137 |
+
<br />
|
| 138 |
+
<a href="https://startbootstrap.com/solution/contact-forms">https://startbootstrap.com/solution/contact-forms</a>
|
| 139 |
+
</div>
|
| 140 |
+
</div>
|
| 141 |
+
<!-- Submit error message-->
|
| 142 |
+
<!---->
|
| 143 |
+
<!-- This is what your users will see when there is-->
|
| 144 |
+
<!-- an error submitting the form-->
|
| 145 |
+
<div class="d-none" id="submitErrorMessage"><div class="text-center text-danger mb-3 mt-2">Error sending message!</div></div>
|
| 146 |
+
</form>
|
| 147 |
+
</div>
|
| 148 |
+
</div>
|
| 149 |
+
</div>
|
| 150 |
+
</section>
|
| 151 |
+
<!-- Contact-->
|
| 152 |
+
<section class="contact-section bg-black">
|
| 153 |
+
<div class="container px-4 px-lg-5">
|
| 154 |
+
<div class="row gx-4 gx-lg-5">
|
| 155 |
+
<div class="col-md-4 mb-3 mb-md-0">
|
| 156 |
+
<div class="card py-4 h-100">
|
| 157 |
+
<div class="card-body text-center">
|
| 158 |
+
<i class="fas fa-map-marked-alt text-primary mb-2"></i>
|
| 159 |
+
<h4 class="text-uppercase m-0">Address</h4>
|
| 160 |
+
<hr class="my-4 mx-auto" />
|
| 161 |
+
<div class="small text-black-50">4923 Market Street, Orlando FL</div>
|
| 162 |
+
</div>
|
| 163 |
+
</div>
|
| 164 |
+
</div>
|
| 165 |
+
<div class="col-md-4 mb-3 mb-md-0">
|
| 166 |
+
<div class="card py-4 h-100">
|
| 167 |
+
<div class="card-body text-center">
|
| 168 |
+
<i class="fas fa-envelope text-primary mb-2"></i>
|
| 169 |
+
<h4 class="text-uppercase m-0">Email</h4>
|
| 170 |
+
<hr class="my-4 mx-auto" />
|
| 171 |
+
<div class="small text-black-50"><a href="#!">hello@yourdomain.com</a></div>
|
| 172 |
+
</div>
|
| 173 |
+
</div>
|
| 174 |
+
</div>
|
| 175 |
+
<div class="col-md-4 mb-3 mb-md-0">
|
| 176 |
+
<div class="card py-4 h-100">
|
| 177 |
+
<div class="card-body text-center">
|
| 178 |
+
<i class="fas fa-mobile-alt text-primary mb-2"></i>
|
| 179 |
+
<h4 class="text-uppercase m-0">Phone</h4>
|
| 180 |
+
<hr class="my-4 mx-auto" />
|
| 181 |
+
<div class="small text-black-50">+1 (555) 902-8832</div>
|
| 182 |
+
</div>
|
| 183 |
+
</div>
|
| 184 |
+
</div>
|
| 185 |
+
</div>
|
| 186 |
+
<div class="social d-flex justify-content-center">
|
| 187 |
+
<a class="mx-2" href="#!"><i class="fab fa-twitter"></i></a>
|
| 188 |
+
<a class="mx-2" href="#!"><i class="fab fa-facebook-f"></i></a>
|
| 189 |
+
<a class="mx-2" href="#!"><i class="fab fa-github"></i></a>
|
| 190 |
+
</div>
|
| 191 |
+
</div>
|
| 192 |
+
</section>
|
| 193 |
+
<!-- Footer-->
|
| 194 |
+
<footer class="footer bg-black small text-center text-white-50"><div class="container px-4 px-lg-5">Copyright © Your Website 2023</div></footer>
|
| 195 |
+
<!-- Bootstrap core JS-->
|
| 196 |
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
|
| 197 |
+
<!-- Core theme JS-->
|
| 198 |
+
<script src="static/js/scripts.js"></script>
|
| 199 |
+
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
|
| 200 |
+
<!-- * * SB Forms JS * *-->
|
| 201 |
+
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
|
| 202 |
+
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
|
| 203 |
+
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
|
| 204 |
+
</body>
|
| 205 |
+
</html>
|
mlb_classes.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12d27999002f6e43fe3ffcfd182345bd484d35dfe8e4e9252f973db52f21953b
|
| 3 |
+
size 199847
|
tag_predictor_lr.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2502a295a10744d623072f3dbfd050d1df648ac989ca9fa20a16794a176af13e
|
| 3 |
+
size 399277489
|
tfidf_vectorizer.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3c1cd7fc810a961cbc8f6ff5a32cdccd3fa6f8a9e0af6d737eb8d8bc7b9621c
|
| 3 |
+
size 115538887
|