Skip to content

Instantly share code, notes, and snippets.

View AnObfuscator's full-sized avatar

Jonathan Evans AnObfuscator

View GitHub Profile
@AnObfuscator
AnObfuscator / LLM-from-scratch.ipynb
Created March 1, 2024 06:03 — forked from iamaziz/LLM-from-scratch.ipynb
Building a large language model (LLM) from scratch (for learning and fun - inspired by Llama2).
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
namespace System
namespace System.Collections.Generic
namespace QuantConnnect
namespace QuantConnect.Orders
namespace QuantConnect.Algorithm
namespace QuantConnect.Interfaces
namespace QuantConnect.Securities
namespace QuantConnect.Securities.Interfaces
namespace QuantConnect.Algorithm.FSharp
module MarketCodes =
let US = dict [
("A", "American Stock Exchange");
("B", "Boston Stock Exchange");
("C", "National Stock Exchange");
("D", "FINRA ADF");
("I", "International Securities Exchange");
("J", "Direct Edge A");
("K", "Direct Edge X");
public class HelloWorld
{
public static void printHelloWorld()
{
System.out.println("Hello World!");
}
public static void main(String[] args)
{
printHelloWorld();