The Go-Gourmet model is a fine-tuned version of the mistralai/Mistral-7B-Instruct-v0.2 base model with 32k context window, specifically trained to generate structured restaurant cards based on an input of a restaurant name and location. The model has been fine-tuned using a custom dataset of restaurant information to capture relevant details such as cuisine, opening times, location, rating, average price, best dishes, pre-booking requirements, dress code, and website.
Model Details
Base Model: mistralai/Mistral-7B-Instruct-v0.2.
Fine-Tuning Dataset: Custom dataset of restaurant information Sadiah/Go-Gourmet.
Fine-Tuning Approach: QLoRA and SFT Trainer.
Model Size: The model retains the same size and architecture as the original Mistral base model.
Intended Use
The Go-Gourmet Fine-Tuned Mistral Model is designed to generate structured restaurant cards based on an input of a restaurant name and location. It can be used for various purposes, such as:
Generating informative restaurant cards for food and travel applications
Providing quick and structured information about restaurants to users
Enhancing natural language processing applications related to the food and hospitality industry
Limitations and Considerations
The model's outputs are generated based on patterns and characteristics learned from the fine-tuning dataset. While it aims to provide accurate and relevant information, the generated restaurant cards may not always be perfect or up-to-date.
The model relies on the quality and comprehensiveness of the fine-tuning dataset. If certain details or categories are missing from the dataset, the model may not be able to generate them accurately.
The generated restaurant cards should be used as a starting point and should be verified with official sources or the restaurants themselves for the most accurate and current information.
Inference Code
To test and interact with the Go-Gourmet Fine-Tuned Mistral Model, you can use the following inference code:
python
1# Load the fine-tuned model from hugging face2import torch
3from transformers import AutoModelForCausalLM, AutoTokenizer
4tokenizer_new = AutoTokenizer.from_pretrained("Sadiah/Go-Gourmet")5model_new = AutoModelForCausalLM.from_pretrained(6"Sadiah/Go-Gourmet",7 trust_remote_code=True,8 torch_dtype=torch.float16,9 device_map={"":0},10)1112input_text ='''[INST]Olives, Delhi [/INST]'''#Define instruction13input_ids = tokenizer_new(input_text, return_tensors="pt")#Tokenize instruction14input_ids = input_ids.to("cuda")#Move instruction to GPU15outputs = model_new.generate(**input_ids, max_length=300, num_return_sequences=1, temperature=0)#Generate response16generated_text = tokenizer_new.decode(outputs[0])#Decode generated response1718# Find the index of the closing instruction tag and remove the instruction19instruction_end_index = generated_text.find("[/INST]")20if instruction_end_index !=-1:21 generated_text = generated_text[instruction_end_index +len("[/INST]"):].strip()2223# Find the index of "Website:" and the end of the website address24website_start_index = generated_text.find("Website:")25if website_start_index !=-1:26 website_end_index = generated_text.find("\n", website_start_index)27if website_end_index ==-1:28 website_end_index =len(generated_text)29 truncated_text = generated_text[:website_end_index]30print(truncated_text.strip())31else:32print(generated_text)
Name: Olives, Delhi
Cuisine: Mediterranean
Opening Times: Mon-Sun: 12:30pm-3:30pm, 7pm-11:30pm
Location: 1, Kalka Das Marg, New Delhi, Delhi 110001, India (28.7031, 77.1123)
Rating: 4.3 (Source: Zomato)
Average Price Per Person: Moderate
Three Best Dishes:
1. Grilled Halloumi Cheese: A popular Mediterranean cheese, grilled to perfection.
2. Falafel Platter: A selection of crispy, flavorful falafel balls served with hummus and pita bread.
3. Lamb Shank Tagine: Slow-cooked lamb shank in a rich, aromatic sauce.
Pre-Booking Needed: Recommended, especially for dinner
Dress Code: Casual
Website: http://www.olivesdelhi.com/
This code snippet allows you to provide an input of a restaurant name and location and generate a structured restaurant card using the Go-Gourmet Fine-Tuned Mistral Model.
Contact and Feedback
If you have any questions, feedback, or concerns regarding the Go-Gourmet Fine-Tuned Mistral Model, please contact me at https://www.sadiahzahoor.com/contact .