Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

conf.py 390 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  1. import os
  2. data_dir = 'data'
  3. source_xml = os.path.join(data_dir, 'Posts.xml')
  4. source_tsv = os.path.join(data_dir, 'Posts.tsv')
  5. train_tsv = os.path.join(data_dir, 'Posts-train.tsv')
  6. test_tsv = os.path.join(data_dir, 'Posts-test.tsv')
  7. train_matrix = os.path.join(data_dir, 'matrix-train.p')
  8. test_matrix = os.path.join(data_dir, 'matrix-test.p')
  9. model = os.path.join(data_dir, 'model.p')
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...