furukama commited on
Commit
1aacf8b
·
verified ·
1 Parent(s): 714792b

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +1 -7
README.md CHANGED
@@ -58,7 +58,7 @@ The model shows consistent improvement across all checkpoints with no signs of o
58
  ```python
59
  from mlx_lm import load, generate
60
 
61
- model, tokenizer = load("furukama/LFM2.5-1.2B-Text2SQL-MLX")
62
 
63
  # Example query
64
  prompt = '''CREATE TABLE employees (id INT, name VARCHAR, salary DECIMAL);
@@ -69,12 +69,6 @@ response = generate(model, tokenizer, prompt=prompt, max_tokens=256)
69
  print(response)
70
  ```
71
 
72
- ## Limitations
73
-
74
- - Trained on synthetic data for a specific database schema
75
- - Best suited for similar SQL query patterns seen during training
76
- - May not generalize well to very different database schemas
77
-
78
  ## License
79
 
80
  This model is released under the Apache 2.0 license, following the base model's license.
 
58
  ```python
59
  from mlx_lm import load, generate
60
 
61
+ model, tokenizer = load("hybridaione/LFM2.5-1.2B-Text2SQL-MLX")
62
 
63
  # Example query
64
  prompt = '''CREATE TABLE employees (id INT, name VARCHAR, salary DECIMAL);
 
69
  print(response)
70
  ```
71
 
 
 
 
 
 
 
72
  ## License
73
 
74
  This model is released under the Apache 2.0 license, following the base model's license.