Sławomir Paszko
Sławomir Paszko
How to set `--img-size` parameter for training set with diffrent input images size? I have a training set with images `640x352` and `1024x768` and `960x708` in the same directory. How...
Here is my repo https://github.com/folkien/pyStock You can use this code or merge with your work if you want. You have : - more indicators implemented, - reporting of signals for...
Could you explain better the idea behind this projected? As far I am concerned, it looks like you : 1. Trained YOLO to recognize (Letters/Numbers + License Plate) 2. Parse...
Hello, I have a python program packed with pyinstaller which uses wakepy. After packing for windows 10 .exe program is halted when wakepy `with keep.running()` is called. Have you tested...
Why you don't use argparse for parsing arguments? It's far more easier to use, code and works as standards. Example below ```python parser = argparse.ArgumentParser() parser.add_argument("-a", "--addAlarm", action='store_true', required=False, help="Adds...
Added possibility to give longer `chord_colors` list to define each separated arc color. Now each arc calculates individual color from `chord_colors` list. If list is shorter then color is selected...
Candlestick patterns - check again all paterrns, if are correct! - Display only last 52 days of patterns,
Example code import matplotlib.pyplot as plt import numpy as np class Cursor(object): def __init__(self, ax): self.ax = ax self.lx = ax.axhline(color='k') # the horiz line self.ly = ax.axvline(color='k') # the...
1. Argparse - more arguments. * If one stock given then standard plotting. * If more stocks given then comparision plot. Add also option to rounding prices/values to n decimal...