Spaces:
Runtime error
Runtime error
LysandreJik
commited on
Commit
•
290651e
1
Parent(s):
721f65d
Links to docs
Browse files- .gitignore +2 -0
- app.py +4 -0
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
.env
|
2 |
+
.idea
|
app.py
CHANGED
@@ -16,6 +16,10 @@ We'll tokenize this using the appropriate tokenizer, and we'll mask the sixth to
|
|
16 |
<br/><br/>
|
17 |
|
18 |
When using the <code>bert-base-cased</code> checkpoint to unmask that token, what is the most probable prediction?
|
|
|
|
|
|
|
|
|
19 |
"""
|
20 |
|
21 |
internships = {
|
|
|
16 |
<br/><br/>
|
17 |
|
18 |
When using the <code>bert-base-cased</code> checkpoint to unmask that token, what is the most probable prediction?
|
19 |
+
|
20 |
+
Tips:
|
21 |
+
- You might find the [transformers docs (link)](https://huggingface.co/docs/transformers/index) useful.
|
22 |
+
- You might find the [datasets docs (link)](https://huggingface.co/docs/datasets/index) useful.
|
23 |
"""
|
24 |
|
25 |
internships = {
|