AWS, find all file list in s3 bucket
Find all file list in s3 bucket
Thank you.
www.marearts.com
The study blog from marearts.com
Computer Vision & Machine Learning Research Laboratory
Find all file list in s3 bucket
Thank you.
www.marearts.com
I met this error when I install simpletransformers or transformers.
I did many try but no luck.
But this was solution to me.
Install Rust before transformer installation.
so..
and install transformers
Thank you.
www.marearts.com
if you install docker using snap, it can be happen.
so remove docker from snap installation
> sudo snap remove docker
And install docker again using apt
> sudo apt update
original page is here:
https://marearts.notion.site/Labelme2Yolo-Yolo2Labelme-3564dd886ac64b5499d6f2784a8a4be8
yolo2labelme main code
labelme2yolo main code
Thank you.
www.marearts.com
🙇🏻♂️
Here is good reference for this subject:
https://aws.amazon.com/premiumsupport/knowledge-center/lambda-layer-simulated-docker/
https://dev.to/matthewvielkind/creating-python-aws-lambda-layers-with-docker-4376
If we use docker then it's very simple.
Let's go through step by step
1. make Main folder & python library folder
ex) In this tutorial, we suppose to need flask package
2. make requirements.txt and put packages to install by pip
So folder structure looks like this:
├── requirements.txt └── python/ └── lib/ ├── python3.6/ │ └── site-packages/ └── python3.8/ └── site-packages/
3. Run docker to install packages
note, change python version properly
4. compress package to zip
5. use zip file for your lambda
That's it all.
Thank you.
www.marearts.com
🙇🏻♂️