TII UAE Falcon AI technology Top Builders

Explore the top contributors showcasing the highest number of TII UAE Falcon AI technology app submissions within our community.

Falcon LLM Models

Built on top of the RefinedWeb dataset and trained on several languages, Falcon is one of the best open-source models currently available. It features an architecture optimized for inference, incorporating FlashAttention and multiquery techniques.

Use Cases

Falcon can be used for a wide range of NLP tasks, including:

  • Text generation
  • Summarization
  • Translation
  • Question-answering
  • Sentiment analysis
  • Named entity recognition

You can fine-tune Falcon on your specific task and dataset to achieve better performance and adapt it to your needs.

Key Features

  • High-performance: Falcon LLMs are designed for efficient inference and provide state-of-the-art results on various NLP tasks.
  • Multilingual: Falcon models are trained on multiple languages, including English, German, Spanish, and French, with limited capabilities in other languages such as Italian, Portuguese, and Dutch.
  • Flexible: Falcon can be used for various tasks, such as text generation, summarization, translation, and question-answering, and can be fine-tuned for specific use cases.
  • Open-source: Falcon models are available under a license that allows commercial use, making them accessible for a wide range of applications.

Getting Started

To use the Falcon model, you need to have the transformers library installed. You can install it using pip:

pip install transformers

You can then use the Falcon model in your Python code as follows:

from transformers import AutoTokenizer, AutoModelForCausalLM
import transformers
import torch

model = "tiiuae/falcon-40b"

tokenizer = AutoTokenizer.from_pretrained(model)
pipeline = transformers.pipeline(
    "text-generation",
    model=model,
    tokenizer=tokenizer,
    torch_dtype=torch.bfloat16,
    trust_remote_code=True,
    device_map="auto",
)
sequences = pipeline(
   "Girafatron is obsessed with giraffes, the most glorious animal on the face of this Earth. Girafatron believes all other animals are irrelevant when compared to the glorious majesty of the giraffe.\nDaniel: Hello, Girafatron!\nGirafatron:",
    max_length=200,
    do_sample=True,
    top_k=10,
    num_return_sequences=1,
    eos_token_id=tokenizer.eos_token_id,
)
for seq in sequences:
    print(f"Result: {seq['generated_text']}")

Resources

TII UAE Falcon AI technology Hackathon projects

Discover innovative solutions crafted with TII UAE Falcon AI technology, developed by our community members during our engaging hackathons.

LoopX

LoopX

Problem: Businesses in the Arabian market face a unique set of challenges: they're swamped with tedious, repetitive tasks like customer service, data entry, and record management. These jobs consume a lot of time and resources, dragging down efficiency and keeping staff from focusing on more strategic work. Plus, most tech solutions out there don’t fully grasp the Arabic language or culture, making them less effective and sometimes even out of touch with local needs. Solutions: LoopX brings a game-changing solution to Arabian businesses bogged down by routine, manual tasks. We offer all of Stratups, SMEs and even Governments an easy, fast, and affordable way to run their specialized AI Agents through our platform and our support team of experts. Giving every Arabian business the easy way to build and run their own AI Agents within hours, making it possible for +23 Million Startups & SMEs to get the power of AI Agents in Fast, Smooth, and Cheap way without the need to build their AI Agents from scratch taking months of development and paying thousands of dollars. Our AI agents, crafted with a deep understanding of local culture and language, automate operations like customer support and data processing with unmatched precision. This tech leap not only streamlines workflows but also aligns perfectly with regional nuances, offering a tech ally that boosts productivity while respecting cultural identity. With LoopX, companies leap into efficient, culturally coherent automation, transforming how they operate in the digital era. Products and Services we offer: 1. AI Agents Marketplace: A dynamic platform offering specialized AI agents for business process automation. 2. Custom AI Agents Building: Tailored AI automation services for unique business needs. 3. AI Consultation Service: Expert guidance on AI adoption and strategic implementation. LoopX's journey is marked by gaining traction with 8 customers and 2 major projects, driving us close to 3K USD in revenue.

Falcon Document Parser

Falcon Document Parser

In the rapidly evolving landscape of document processing, businesses are continually seeking innovative solutions to enhance efficiency, reduce manual workload, and ensure the accuracy of data extraction from crucial documents like invoices. The document parsing application, powered by Falcon LLM, emerges as a standout solution in this domain, delivering unparalleled precision in interpreting and extracting information from varied invoice formats. Falcon LLM, a cutting-edge language learning model, is renowned for its capability to grasp and interpret the complexities of human language. This application harnesses the full potential of Falcon LLM, but it goes a step further by employing advanced fine-tuning techniques such as Parameter Efficient Fine-tuning (PEFT) and Quantized Low-Rank Adaptation(QLORA). These techniques enable the model to adapt to the specific nuances and variations present in different invoice formats, ensuring a high level of accuracy across diverse datasets. Hosting the application on Streamlit brings an additional layer of user-friendliness and accessibility to the table. Streamlit is known for its ability to rapidly deploy data applications with minimal setup, and in this case, it provides an intuitive web interface for interacting with the document parsing application. Users can upload invoices directly through the Streamlit interface, initiate the parsing process, and receive the extracted data in real-time. This not only simplifies the user experience but also makes the powerful capabilities of Falcon LLM and the fine-tuned model accessible to a broader audience, regardless of their technical expertise. The implementation of this document parsing application represents a significant leap forward in automating and optimizing the invoice processing workflow.By leveraging Falcon LLM, fine-tuning with PEFT and QLORA, providing an API endpoint for easy integration, and hosting the solution on Streamlit,it provides a friendly solution

Falcon Barsita

Falcon Barsita

Who are we? We are a new startup dedicated to revolutionizing the restaurant industry with cutting-edge AI solutions. This Hackathon provides us an opportunity to showcase an early concept of our chatbot (still significantly in development) built on top of Falcon LLM. The Problem As the restaurant industry continues to recover from the coronavirus pandemic, it is confronting numerous challenges, with the foremost and most significant being high labor costs. The Solution We introduce Falcon Barista, an order-taking bot for coffee shops and restaurants, designed to converse with customers in the most human-like manner possible. Although it is still under development, this bot is envisioned as an affordable alternative for restaurants to replace manual labor at counters, drive-throughs, and over the phone. What makes Falcon Barista better? The primary innovation behind Falcon Barista lies in its minimal compute requirements, thereby maximizing cost savings. While many chatbots are built on top of LLMs with over 100 billion parameters, Falcon Barista operates on the much more compact fine-tuned Falcon-7B LLM, which consists of only 7 billion parameters. This efficiency is realized by employing smaller fine-tuned BERT models in tandem with the Falcon LLM: the Falcon-7B LLM guides the conversation while BERT manages information extraction, such as identifying food items and their quantities. Falcon Barista utilizes a quantized version of the Falcon-7B LLM and can be deployed on a single GPU with 16GB RAM. Furthermore, it boasts Automatic Speech Recognition and Text-to-Speech capabilities, allowing for conversations with customers that mimic human-like interactions. Challenges (Due to lack of compute resources) 1. Significant latency (~10s). 2. The BERT model, still in the process of fine-tuning, can easily become confused. 3. Falcon-7B requires further fine-tuning for more efficient conversation management.