noahho commited on
Commit
a886efa
·
1 Parent(s): 676e04d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -10
README.md CHANGED
@@ -2,7 +2,6 @@
2
  pipeline_tag: tabular-classification
3
  ---
4
 
5
-
6
  # TabPFN v2: A Tabular Foundation Model
7
 
8
  TabPFN is a transformer-based foundation model for tabular data that leverages prior-data based learning to achieve strong performance on small tabular datasets without requiring task-specific training.
@@ -19,18 +18,29 @@ pip install tabpfn
19
  - **Paper:** Published in Nature (January 2024)
20
  - **Repository:** [GitHub - priorlabs/tabpfn](https://github.com/priorlabs/tabpfn)
21
 
22
- ### Citation
23
- TBD
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  ## Quick Start
26
- ```python
27
- from tabpfn import TabPFNClassifier
28
 
29
- # Initialize model
30
- classifier = TabPFNClassifier()
31
- classifier.fit(X_train, y_train)
32
- predictions = classifier.predict(X_test)
33
- ```
34
 
35
  ## Technical Requirements
36
  - Python ≥ 3.9
 
2
  pipeline_tag: tabular-classification
3
  ---
4
 
 
5
  # TabPFN v2: A Tabular Foundation Model
6
 
7
  TabPFN is a transformer-based foundation model for tabular data that leverages prior-data based learning to achieve strong performance on small tabular datasets without requiring task-specific training.
 
18
  - **Paper:** Published in Nature (January 2024)
19
  - **Repository:** [GitHub - priorlabs/tabpfn](https://github.com/priorlabs/tabpfn)
20
 
21
+ ### 📚 Citation
22
+
23
+ ```bibtex
24
+ @article{hollmann2024tabpfn,
25
+ title={Accurate predictions on small data with a tabular foundation model},
26
+ author={Hollmann, Noah and M{\"u}ller, Samuel and Purucker, Lennart and
27
+ Krishnakumar, Arjun and K{\"o}rfer, Max and Hoo, Shi Bin and
28
+ Schirrmeister, Robin Tibor and Hutter, Frank},
29
+ journal={Nature},
30
+ year={2024},
31
+ month={01},
32
+ day={09},
33
+ doi={10.1038/s41586-024-08328-6},
34
+ publisher={Springer Nature},
35
+ url={https://www.nature.com/articles/s41586-024-08328-6},
36
+ }
37
+ ```
38
+
39
 
40
  ## Quick Start
 
 
41
 
42
+ 📚 For detailed usage examples and best practices, check out:
43
+ - [Interactive Colab Tutorial](https://tinyurl.com/tabpfn-colab-local)
 
 
 
44
 
45
  ## Technical Requirements
46
  - Python ≥ 3.9