Skip to content

Instantly share code, notes, and snippets.

View mang0kitty's full-sized avatar
🦄

Aideen Fay mang0kitty

🦄
View GitHub Profile
@mang0kitty
mang0kitty / README.md
Last active April 3, 2023 19:32
YOLOv8 Weights and Biases

Weights and Biases Callbacks for YOLOv8

This Gist adds support for Weights and Biases to existing YOLOv8 models through their callback interface. Importing this file will register the necessary callbacks, or you can copy-paste this code as-is into your Jupyter notebook before creating your YOLO(...) model.

@mang0kitty
mang0kitty / Fibonacci.java
Last active August 20, 2019 13:53 — forked from meghakrishnamurthy/Fibonacci.java
Fibonacci - Recursive and Iterative implementation in Java
package megha.codingproblems.general;
/**
* Fibonacci program - Both iterative and recursive versions
* Fibonacci series - 1,1,2,3,5,8,13....
*
* @author megha krishnamurthy
*
*/
public class Fibonacci {