When try to run AWS Lambda locally on windows:
sam local invoke
I got the following error:
Invoking app.lambda_handler (python3.8)
class VideoTestDatasetWithoutGT(data.Dataset): | |
"""Video test dataset. | |
More generally, it supports testing dataset with following structures: | |
dataroot | |
├── subfolder1 | |
├── frame000 | |
├── frame001 | |
├── ... | |
├── subfolder1 | |
├── frame000 |
When try to run AWS Lambda locally on windows:
sam local invoke
I got the following error:
Invoking app.lambda_handler (python3.8)
Function Set-Window { | |
<# | |
.SYNOPSIS | |
Retrieve/Set the window size and coordinates of a process window. | |
.DESCRIPTION | |
Retrieve/Set the size (height,width) and coordinates (x,y) | |
of a process window. | |
.PARAMETER ProcessName |
Download and install Python 3.8.
Open the folder using VSCode.
Open the VSCode terminal using CTRL + J
.
Then create new virtualenv using the following command:
{ | |
"editor.fontSize": 14, | |
"workbench.colorTheme": "Visual Studio Light", | |
"workbench.colorCustomizations": { | |
"[DuoTone Dark Sea]": { | |
"sideBar.background": "#1D262F", | |
"sideBar.foreground": "#bec9d3", | |
"sideBar.dropBackground": "#bec9d3", | |
"sideBarTitle.foreground": "#444c55", | |
"sideBarSectionHeader.background": "#1D262F", |
total_miles | total_paid | |
---|---|---|
390.0 | 36.66 | |
403.0 | 37.05 | |
396.5 | 34.71 | |
383.5 | 32.5 | |
321.1 | 32.63 | |
391.3 | 34.45 | |
386.1 | 36.79 | |
371.8 | 37.44 | |
404.3 | 38.09 |
Click==7.0 | |
Flask==1.0.2 | |
gunicorn==19.9.0 | |
itsdangerous==1.1.0 | |
Jinja2==2.10 | |
MarkupSafe==1.1.0 | |
Werkzeug==0.14.1 |
from flask import Flask | |
import config | |
app = Flask(__name__) | |
@app.route("/") | |
def hello(): | |
return "Hello World!" |
from os import environ as env | |
import multiprocessing | |
PORT = int(env.get("PORT", 8080)) | |
DEBUG_MODE = int(env.get("DEBUG_MODE", 1)) | |
# Gunicorn config | |
bind = ":" + str(PORT) | |
workers = multiprocessing.cpu_count() * 2 + 1 | |
threads = 2 * multiprocessing.cpu_count() |
import json | |
output = open("kumparan-news-dataset-19062018-16112018.txt", "w") | |
for line in open("typo-detector-dataset.json"): | |
data = json.loads(line) | |
output.write(data["title"].strip() + "\n") | |
if "content" in data: | |
output.write(data["content"].strip() + "\n") |