Ggml Library Is library Machine Learning
Copyright (c) 2024 GLOBAL CORPORATION - GENERAL DEVELOPER
- Documentation
- Youtube
- Telegram Support Group
- Contact Developer (check social media or readme profile github)
- 📱️ Cross Platform support (Device, Edge Severless functions)
- 📜️ Standarization Style Code
- ⌨️ Cli (Terminal for help you use this library or create project)
- 🔥️ Api (If you developer bot / userbot you can use this library without interact cli just add library and use 🚀️)
- 🧩️ Customizable Extension (if you want add extension so you can more speed up on development)
- ✨️ Pretty Information (user friendly for newbie)
This library 100% use on every my create project (App, Server, Bot, Userbot)
- 10-02-2025 Starting Release Stable With core Features
- Dart
dart pub add ggml_library_dart
- Flutter
flutter pub add ggml_library_flutter
Example Quickstart script minimal for insight you or make you use this library because very simple
import 'dart:io';
import 'package:ffi/ffi.dart';
import "dart:ffi";
import 'package:ggml_library/core/ggml/ffi/bindings.dart';
import 'package:ggml_library/ggml_library.dart';
void main(List<String> args) async {
print("start");
final GgmlLibrary ggmlLibrary = GgmlLibrary(
libraryGgmlPath: "libggml.so",
);
await ggmlLibrary.ensureInitialized();
final Pointer<ggml_init_params> params = calloc<ggml_init_params>();
params.ref.no_alloc = false;
final Pointer<ggml_context> ggmlContext = ggmlLibrary.ggmlLibrarySharedBindingsByGeneralDeveloper.ggml_init(params.ref);
ggmlLibrary.ggmlLibrarySharedBindingsByGeneralDeveloper.ggml_free(ggmlContext);
exit(0);
}
Minimal simple application example of using whisper library Youtube Video
Mobile | Desktop |
---|---|
![]() |
![]() |
Minimal simple application example of using llama library Youtube Video
Mobile | Desktop |
---|---|
![]() |
![]() |
Minimal simple application example of using outetts Youtube Video
Mobile | Desktop |
---|---|
![]() |
![]() |
Minimal simple application example of Stable Diffusion Youtube Video
Mobile | Desktop |
---|---|
![]() |
![]() |
Copyright (c) 2024 GLOBAL CORPORATION - GENERAL DEVELOPER