Instructions to use Mikkkkoooo/adaption_market_analysis_xxl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Mikkkkoooo/adaption_market_analysis_xxl with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mixtral-8x7B-Instruct-v0.1") model = PeftModel.from_pretrained(base_model, "Mikkkkoooo/adaption_market_analysis_xxl") - Notebooks
- Google Colab
- Kaggle
adaption_market_analysis_xxl
Model Training
A LORA adapter for mistralai/Mixtral-8x7B-Instruct-v0.1. This model was trained with SFT using Adaption's AutoScientist on the market_analysis_XXL dataset.
AutoScientist Config
{
"job_id": "d22f3767-4780-4772-9d01-c4b56f0e6ca7",
"training_experiment_id": "3d732231-9be4-498f-be57-2def19e9664b",
"original_model_name": "mistralai/Mixtral-8x7B-Instruct-v0.1",
"trained_model_name": "adaption_market_analysis_xxl",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"lora": "true",
"lora_r": 32,
"n_evals": 5,
"n_epochs": 2,
"batch_size": "max",
"lora_alpha": 64,
"lora_dropout": 0.05,
"min_lr_ratio": 0.1,
"warmup_ratio": 0.03,
"weight_decay": 0.01,
"learning_rate": 0.00002,
"max_grad_norm": 1,
"base_model_size": "46.7B",
"train_on_inputs": "false",
"training_method": "sft",
"lr_scheduler_type": "cosine",
"scheduler_num_cycles": 0.5,
"lora_trainable_modules": "q_proj,k_proj,v_proj,o_proj"
}
}
Training Data
The model was trained on 29,397 rows of adapted data with the following domain distribution: market-analysis (100%).
Model Evaluation
The model was evaluated on an in-distribution held-out test set as well as a broader domain-specific test set to measure generalization.
How to use
pip install torch transformers peft
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
BASE = "mistralai/Mixtral-8x7B-Instruct-v0.1"
ADAPTER = "<this-repo-id>"
device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.float32 if device == "cpu" else torch.bfloat16
base = AutoModelForCausalLM.from_pretrained(BASE, dtype=dtype).to(device)
model = PeftModel.from_pretrained(base, ADAPTER)
# Optional: merge the LoRA weights into the base for faster inference
model = model.merge_and_unload()
model.eval()
tokenizer = AutoTokenizer.from_pretrained(BASE)
messages = [{"role": "user", "content": "Hello!"}]
text = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(device)
with torch.inference_mode():
out = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
- Downloads last month
- 12
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for Mikkkkoooo/adaption_market_analysis_xxl
Base model
mistralai/Mixtral-8x7B-v0.1 Finetuned
mistralai/Mixtral-8x7B-Instruct-v0.1
