xxxxxxxxxx
44
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roboflow + Replit Example</title>
<!-- Load roboflow.js, the script that will handle loading and running our computer vision model in the browser -->
<script src="https://cdn.roboflow.com/0.2.25/roboflow.js"></script>
<link rel="stylesheet" href="./style.css" />
<script>
// Replace the key below with your Roboflow publishable key
var publishable_key = "rf_gbjtVrDvpbUArbvjyV3a0hMB5uw1";
// Change these values to set your model name, version, and the
// confidence threshold that must be met for the model to return
// a prediction.
// We recommend setting a low CONFIDENCE_THRESHOLD value while testing
// and filtering out predictions by confidence level using the
//"Prediction Confidence %" filter
const CONFIDENCE_THRESHOLD = 0.1;
const MODEL_NAME = "playing-cards-ow27d/4";
const MODEL_VERSION = 4;
</script>
</head>
<body>
<main>
<!-- Load our application logic -->
<script src="./script.js"></script>
</main>
</body>
</html>