saad-palapa
saad-palapa
I'm running the TfLite model analyzer on the EfficientDet TfLite file like so: ``` model_path = "/content/efficientdet.tflite" tf.lite.experimental.Analyzer.analyze(model_path=model_path, gpu_compatibility=True) ``` One [output line](https://gist.github.com/saad-palapa/a3827a9ed6271db217a4b59c2498e602#file-gistfile1-txt-L491) shows that the last layer is not...
**Describe the bug** I'm training an image classifier with Ludwig's TorchVision models. The original models have a softmax operator in the last layer but they are [removed](https://github.com/ludwig-ai/ludwig/blob/master/ludwig/encoders/image/torchvision.py#L123) because it doesn't...
# Code Pull Requests Please provide the following: TODO(saad) - a clear explanation of what your code does - if applicable, a reference to an issue - a reproducible test...
**Is your feature request related to a problem? Please describe.** I would like to be able to export computer-vision models to ONNX **Describe the use case** [ONNX](https://onnx.ai/) is a format...
**Is your feature request related to a problem? Please describe.** Our computer vision solution is missing an important feature to improve accuracy. **Describe the use case** In the past, I've...
**Is your feature request related to a problem? Please describe.** I would like to be able to export computer-vision models to CoreML that runs on Apple devices. By using CoreML,...
**Is your feature request related to a problem? Please describe.** When running the training script, there is no way to stop training early when performance plateaus. This causes 2 problems:...
Can you add Dockerfile to the repo to make setup quick and easy? I really like [YoloV8's implementation](https://github.com/ultralytics/ultralytics/tree/main/docker). What do you all think?