Oscar PRO

Skataka

AI & ML interests

None yet

Recent Activity

Organizations

None yet

Skataka's activity

reacted to aiqcamp's post with πŸ”₯ 7 days ago
view post
Post
3259
# 🎨 FLUX Diagram Generator - Create Hand-Drawn Style Diagrams

aiqcamp/diagram

Generate beautiful mind maps and diagrams with AI! Using the FLUX.1-schnell model, create natural hand-drawn style diagrams that bring your ideas to life.

## ✨ Key Features

- πŸ’‘ Intuitive prompt-based input system
- 🎯 Rich examples including knowledge trees, digital transformation, creative process, and more
- πŸ›  Customizable settings for image size, seed values, and more
- πŸ–Ό Support for resolutions up to 2048x2048
- ⚑ Fast generation (4 steps default)

## 🎯 Use Cases

- Educational materials
- Project planning
- Idea structuring
- Presentation visuals
- Business process visualization

Built with Gradio for a user-friendly interface that anyone can use. Start creating your own diagrams now! πŸš€

Try it out to transform your ideas into visually appealing diagrams with a unique hand-drawn aesthetic.

#AIart #Diagram #Mindmap #Visualization #HuggingFace
  • 1 reply
Β·
New activity in apple/mistral-coreml 2 months ago
replied to their post 4 months ago
view reply

Sure, here you go; this data is using my Mac. I haven't been able to test it on an iPhone, as I don't have the 16, but I believe it should also work with the iPhone 16.

Context and Setup
Device used: Mac Studio M1 Ultra 64GB with macOS 15.0.1
Models tested: Mistral7B-Instruct V0.3:

  • INT4
  • FP16
  • Decoding algorithm: Greedy

First Run (Model Adaptation):
This is the initial execution when the app is first launched, and Core ML adapts the model to your device’s hardware. This adaptation process is time-consuming as Core ML optimizes the model to leverage the device’s capabilities in future runs.

Configuration Execution Type Time for First Token (s) Generation Speed (tokens/s)
INT4 First Run (Model Adaptation) 32.81 -
INT4 Subsequent Runs - First Token 2.62 4.55
INT4 Additional Iteration 0.32 3.90
FP16 First Run (Model Adaptation) 87.28 -
FP16 Subsequent Runs - First Token 23.17 5.93
FP16 Additional Iteration 7.52 4.09
posted an update 4 months ago
view post
Post
2434
SwiftMistralCoreML
Hi Everyone,

I have created a Swift library to interact with Mistral 7B models in CoreML on macOS.

I hope you find it helpful.

https://github.com/cardona/SwiftMistralCoreML

An open-source Swift library that enables macOS and iOS projects to utilize the Mistral-Interact7B models (INT4 and upcoming FP16) in chat mode. This library includes a complete Swift implementation of the tokenizer and Byte Pair Encoding (BPE) encoder, providing an out-of-the-box solution for integrating advanced language models into your Swift applications.

Features

Full Swift Implementation: Includes tokenizer and BPE encoder written entirely in Swift.
CoreML Integration: Leverages Apple's CoreML framework to run Mistral-Interact7B models efficiently.
Multiple Decoding Strategies: Supports Greedy and Top-K sampling, with plans to add more strategies.
Chat Functionality: Designed to work in chat mode for interactive applications.
FP16 Support (Coming Soon): Future version will support FP16 models for improved performance.

Β·