- A Critical Look at the Current Usage of Foundation Model for Dense Recognition Task
- A Survey on Open-Vocabulary Detection and Segmentation: Past, Present, and Future
- Towards Open Vocabulary Learning: A Survey
- A Survey on Datasets for Decision-making of Autonomous Vehicle
- Visual Tuning
- Visual Question Answering: A Survey on Techniques and Common Trends in Recent Literature
- How Deep Learning Sees the World: A Survey on Adversarial Attacks & Defenses
- Semi-supervised Object Detection: A Survey on Recent Research and Progress
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
import logging | |
import time | |
import mercantile | |
import io | |
import numpy as np | |
from shapely.ops import transform | |
from pyproj.transformer import Transformer | |
from shapely.geometry import box |
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
from typing import Callable, TypeVar, cast, Generic | |
class SomeRequest: | |
pass | |
class SomeResponse: | |
pass |
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
import asyncio | |
import logging | |
import sys | |
import socket | |
import time | |
from contextlib import closing | |
try: | |
from contextlib import asynccontextmanager | |
except ImportError: |
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
import logging | |
import traceback | |
try: | |
import ujson as json | |
except ImportError: | |
import json | |
class JsonFormatter(logging.Formatter): |
Libraries:
- Dask distributed is a lightweight library for distributed computing
- Ray - is a distributed execution framework
- Celery - Distributed Task Queue
- Redis Queue - is a simple Python library for queueing jobs
- Apache Flink - Stateful Computations over Data Streams
- Apache Spark - Lightning-fast unified analytics engine
- JobLib
- https://github.com/NaturalHistoryMuseum/pyzbar (wrapper over zbar library)
- https://github.com/kitsook/pyBarcodeScan example project with using zbar
- https://github.com/mosquito/pdf417 pdf417 generator
- https://github.com/zxing/zxing (barcode scanning library for Java, Android) online demo https://zxing.org/w/decode
- https://github.com/glassechidna/zxing-cpp zxing C++ implementation
- https://github.com/WhyNotHugo/python-barcode barcode generator
- https://barcode.tec-it.com/en online barcode, qr-code generator
Comercial SDK
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
import io | |
from http import HTTPStatus | |
from urllib.request import Request, urlopen | |
from urllib.error import HTTPError | |
class RemoteFile(io.IOBase): | |
''' | |
Example of usage | |
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
import itertools | |
import random | |
import sys | |
import operator | |
import functools | |
import types | |
import math | |
import numpy as np |
NewerOlder